Ignore:
Timestamp:
2001-04-09T21:52:20+12:00 (23 years ago)
Author:
cs025
Message:

Improved behaviour with CORBA etc. support

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/configure.in

    r2279 r2296  
    1919fi
    2020
    21 
    2221dnl
    2322dnl Set use of corba
    2423dnl
    2524AC_ARG_ENABLE(corba, [  --enable-corba          Enable CORBA support], export USE_CORBA=1, export USE_CORBA=0)
    26 AC_DEFINE(USE_CORBA)
     25AC_DEFINE_UNQUOTED(USE_CORBA, $USE_CORBA)
    2726AC_SUBST(USE_CORBA)
    2827
    2928AC_ARG_WITH(micodir, [  --with-micodir          Use installed MICO directory], export MICO_DIR=$enableval, export MICO_DIR="default")
    30 AC_DEFINE(MICO_DIR)
     29AC_DEFINE_UNQUOTED(MICO_DIR, "$MICO_DIR")
    3130AC_SUBST(MICO_DIR)
    3231
     
    3534dnl
    3635AC_ARG_ENABLE(z3950, [  --enable-z3950          Enable Z39.50 client support], USE_Z3950=1, USE_Z3950=0)
    37 AC_DEFINE(USE_Z3950)
     36if test USE_Z3950 = 1; then
     37AC_DEFINE(USE_Z3950, $USE_Z3950)
    3838AC_SUBST(USE_Z3950)
     39fi
    3940
    4041dnl
Note: See TracChangeset for help on using the changeset viewer.