Ignore:
Timestamp:
2010-01-05T00:16:05+13:00 (14 years ago)
Author:
davidb
Message:

Fix for using --enable-jdbm

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/common-src/packages/configure

    r21409 r21419  
    2222ENVIRONMENT=""
    2323
     24# JDBM support enabled by default, can switch it off with --disable-jdbm
     25ENABLE_JDBM=1
    2426# SQLite support enabled by default, can switch it off with --disable-sqlite
    2527USE_SQLITE=true
     
    4850        CACHE_FILE="--cache-file=$cache_file"
    4951        fi
     52        ;;
     53    --disable-jdbm)
     54        ENABLE_JDBM=0
    5055        ;;
    5156    --disable-sqlite)
     
    184189echo ""
    185190echo "Configuring JDBM"
    186 if test x$USE_JDBM = xtrue ;
     191if test $ENABLE_JDBM ;
    187192then
    188193  echo ""
Note: See TracChangeset for help on using the changeset viewer.