Changeset 16288


Ignore:
Timestamp:
2008-07-03T11:02:13+12:00 (16 years ago)
Author:
mdewsnip
Message:

Changed SQLite to be enabled by default -- SQL is the future of Greenstone, after all!

Location:
gsdl/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/configure

    r15932 r16288  
    859859  --disable-yaz           Disable YAZ compilation
    860860  --disable-accentfold    Disable Accent Folding for MGPP
    861   --enable-sqlite         Enable SQLite support
     861  --disable-sqlite        Disable SQLite support
    862862
    863863Optional Packages:
     
    14301430if test "${enable_sqlite+set}" = set; then
    14311431  enableval="$enable_sqlite"
     1432  USE_SQLITE=0
     1433else
    14321434  USE_SQLITE=1
    1433 else
    1434   USE_SQLITE=0
    14351435fi;
    14361436cat >>confdefs.h <<\_ACEOF
  • gsdl/trunk/configure.in

    r15932 r16288  
    7272
    7373dnl
    74 dnl Set use of SQLite
    75 dnl
    76 AC_ARG_ENABLE(sqlite, [  --enable-sqlite         Enable SQLite support], USE_SQLITE=1, USE_SQLITE=0)
     74dnl Set use of SQLite (enabled by default)
     75dnl
     76AC_ARG_ENABLE(sqlite, [  --disable-sqlite        Disable SQLite support], USE_SQLITE=0, USE_SQLITE=1)
    7777AC_DEFINE(USE_SQLITE, $USE_SQLITE)
    7878AC_SUBST(USE_SQLITE)
Note: See TracChangeset for help on using the changeset viewer.