Changeset 15901


Ignore:
Timestamp:
2008-06-09T12:02:28+12:00 (16 years ago)
Author:
mdewsnip
Message:

(Adding new DB support) Forgot to add recent changes to configure.in.

Location:
gsdl/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/configure

    r15816 r15901  
    856856  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
    857857  --enable-corba          Enable CORBA support
    858   --enable-sqlite         Enable SQLite support
    859858  --enable-z3950          Enable Z39.50 client support
    860859  --disable-yaz           Disable YAZ compilation
    861860  --disable-accentfold    Disable Accent Folding for MGPP
     861  --enable-sqlite         Enable SQLite support
    862862
    863863Optional Packages:
     
    14261426
    14271427
     1428
    14281429# Check whether --enable-sqlite or --disable-sqlite was given.
    14291430if test "${enable_sqlite+set}" = set; then
     
    14361437#define USE_SQLITE $USE_SQLITE
    14371438_ACEOF
     1439
    14381440
    14391441
  • gsdl/trunk/configure.in

    r15551 r15901  
    5353dnl Set use of yaz - now compiled by default even when z3950 support not required
    5454dnl
    55 AC_ARG_ENABLE(yaz, [  --disable-yaz          Disable YAZ compilation], USE_YAZ=0, USE_YAZ=1)
     55AC_ARG_ENABLE(yaz, [  --disable-yaz           Disable YAZ compilation], USE_YAZ=0, USE_YAZ=1)
    5656dnl if test USE_YAZ = 1; then
    5757AC_DEFINE(USE_YAZ, $USE_YAZ)
     
    6767dnl disable compilation of accent folding stuff for mgpp (and one day mg)
    6868dnl
    69 AC_ARG_ENABLE(accentfold, [  --disable-accentfold          Disable Accent Folding for MGPP], ENABLE_ACCENTFOLD=0, ENABLE_ACCENTFOLD=1)
     69AC_ARG_ENABLE(accentfold, [  --disable-accentfold    Disable Accent Folding for MGPP], ENABLE_ACCENTFOLD=0, ENABLE_ACCENTFOLD=1)
    7070AC_DEFINE(ENABLE_ACCENTFOLD, $ENABLE_ACCENTFOLD)
    7171AC_SUBST(ENABLE_ACCENTFOLD)
     72
     73dnl
     74dnl Set use of SQLite
     75dnl
     76AC_ARG_ENABLE(sqlite, [  --enable-sqlite         Enable SQLite support], USE_SQLITE=1, USE_SQLITE=0)
     77AC_DEFINE(USE_SQLITE, $USE_SQLITE)
     78AC_SUBST(USE_SQLITE)
    7279
    7380dnl Checks for programs.
     
    450457
    451458# the list of folders in the src folder
    452 srclist="src/hashfile/Makefile src/colservr/Makefile src/recpt/Makefile src/gdbmedit/txt2db/Makefile \
    453           src/oaiservr/Makefile src/gdbmedit/db2txt/Makefile src/getpw/Makefile src/phind/generate/Makefile"
     459srclist="src/hashfile/Makefile src/colservr/Makefile src/corba/Makefile src/protocol/Makefile src/recpt/Makefile src/gdbmedit/txt2db/Makefile \
     460          src/oaiservr/Makefile src/z3950/Makefile src/gdbmedit/db2txt/Makefile src/getpw/Makefile src/phind/generate/Makefile"
    454461
    455462AC_OUTPUT(packages/Makefile lib/Makefile Makefile $srclist $moduleDirs)
Note: See TracChangeset for help on using the changeset viewer.