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/configure

    r21517 r21519  
    816816  --disable-dependency-tracking  speeds up one-time build
    817817  --enable-dependency-tracking   do not reject slow dependency extractors
    818  --enable-sqlite  Enable SQLite support
     818  --disable-sqlite        Disable SQLite support
    819819
    820820Some influential environment variables:
     
    26702670
    26712671
    2672 # Option: SQLite support
     2672# Option: SQLite support (enabled by default)
    26732673# Check whether --enable-sqlite or --disable-sqlite was given.
    26742674if test "${enable_sqlite+set}" = set; then
    26752675  enableval="$enable_sqlite"
    2676   USE_SQLITE=1 &&
     2676
     2677else
     2678  enable_sqlite=yes
     2679fi;
     2680if test "x$enable_sqlite" != xno; then
     2681
    26772682cat >>confdefs.h <<\_ACEOF
    26782683#define USE_SQLITE 1
    26792684_ACEOF
    26802685
    2681 else
    2682   USE_SQLITE=0
    2683 fi;
    2684 
    2685 
    2686 if test "$USE_SQLITE" = 1; then
     2686fi
     2687
     2688
     2689if test "x$enable_sqlite" != xno; then
    26872690  USE_SQLITE_TRUE=
    26882691  USE_SQLITE_FALSE='#'
Note: See TracChangeset for help on using the changeset viewer.