greenstone.org greenstone wiki greenstone trac planet greenstone

Changeset 16288

Show
Ignore:
Timestamp:
2008-07-03 11:02:13 (6 months ago)
Author:
mdewsnip
Message:

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

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 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)