Ignore:
Timestamp:
2010-05-10T18:24:37+12:00 (14 years ago)
Author:
ak19
Message:

Undoing the commits of 22058 to the indexer folder: USE_GDBM, USE_JDBM are not relevant here (or USE_SQLITE).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/common-src/indexers/configure.ac

    r22058 r22070  
    33dnl http://www.gnu.org/software/hello/manual/autoconf/Initializing-configure.html
    44AC_INIT()
    5 
    6 dnl
    7 dnl Set use of JDBM (enabled by default)
    8 dnl
    9 AC_ARG_ENABLE(jdbm, [  --disable-jdbm        Disable JDBM compilation], USE_JDBM=$enableval, USE_JDBM=yes)
    10 if test $USE_JDBM = "yes" -o $USE_JDBM = "1" ; then
    11   USE_JDBM=1
    12   AC_DEFINE(USE_JDBM,[])
    13 else
    14   USE_JDBM=0
    15 fi
    16 AC_SUBST(USE_JDBM)
    17 
    18 dnl
    19 dnl Set use of GDBM (enabled by default)
    20 dnl
    21 AC_ARG_ENABLE(gdbm, [  --disable-gdbm        Disable GDBM compilation], USE_GDBM=$enableval, USE_GDBM=yes)
    22 if test $USE_GDBM = "yes" -o $USE_GDBM = "1" ; then
    23   USE_GDBM=1
    24   AC_DEFINE(USE_GDBM,[])
    25 else
    26   USE_GDBM=0
    27 fi
    28 AC_SUBST(USE_GDBM)
    295
    306
Note: See TracChangeset for help on using the changeset viewer.