Ignore:
Timestamp:
2010-01-18T16:56:17+13:00 (14 years ago)
Author:
mdewsnip
Message:

Fixing up inclusion/exclusion of SQLite support, and changing default to be included.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/gs2-core/common-src/configure

    r21474 r21519  
    814814  --disable-dependency-tracking  speeds up one-time build
    815815  --enable-dependency-tracking   do not reject slow dependency extractors
    816  --enable-sqlite  Enable SQLite support
     816  --disable-sqlite        Disable SQLite support
    817817
    818818Some influential environment variables:
     
    26682668
    26692669
    2670 # Option: SQLite support
     2670# Option: SQLite support (enabled by default)
    26712671# Check whether --enable-sqlite or --disable-sqlite was given.
    26722672if test "${enable_sqlite+set}" = set; then
    26732673  enableval="$enable_sqlite"
    2674   USE_SQLITE=1 &&
     2674
     2675else
     2676  enable_sqlite=yes
     2677fi;
     2678if test "x$enable_sqlite" != xno; then
     2679
    26752680cat >>confdefs.h <<\_ACEOF
    26762681#define USE_SQLITE 1
    26772682_ACEOF
    26782683
    2679 else
    2680   USE_SQLITE=0
    2681 fi;
    2682 
    2683 
    2684 if test "$USE_SQLITE" = 1; then
     2684fi
     2685
     2686
     2687if test "x$enable_sqlite" != xno; then
    26852688  USE_SQLITE_TRUE=
    26862689  USE_SQLITE_FALSE='#'
Note: See TracChangeset for help on using the changeset viewer.