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/runtime-src/configure.ac

    r21505 r21519  
    5656AC_SUBST(COMPAT32BITFLAGS)
    5757
    58 # Option: SQLite support
    59 AC_ARG_ENABLE(sqlite, [ --enable-sqlite  Enable SQLite support], USE_SQLITE=1 && AC_DEFINE(USE_SQLITE, 1, [SQLite support]), USE_SQLITE=0)
    60 AM_CONDITIONAL(USE_SQLITE, test "$USE_SQLITE" = 1)
     58# Option: SQLite support (enabled by default)
     59AC_ARG_ENABLE([sqlite], [AS_HELP_STRING([--disable-sqlite], [Disable SQLite support])], [], [enable_sqlite=yes])
     60if test "x$enable_sqlite" != xno; then
     61  AC_DEFINE(USE_SQLITE, 1, [SQLite support])
     62fi
     63AM_CONDITIONAL(USE_SQLITE, test "x$enable_sqlite" != xno)
    6164
    6265# Generate the Makefiles for this package
Note: See TracChangeset for help on using the changeset viewer.