Changeset 2470
- Timestamp:
- 2001-05-25T11:20:55+12:00 (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/gsdl/configure.in
r2296 r2470 22 22 dnl Set use of corba 23 23 dnl 24 AC_ARG_ENABLE(corba, [ --enable-corba Enable CORBA support], export USE_CORBA=1, exportUSE_CORBA=0)24 AC_ARG_ENABLE(corba, [ --enable-corba Enable CORBA support], USE_CORBA=1, USE_CORBA=0) 25 25 AC_DEFINE_UNQUOTED(USE_CORBA, $USE_CORBA) 26 26 AC_SUBST(USE_CORBA) 27 27 28 AC_ARG_WITH(micodir, [ --with-micodir Use installed MICO directory], export MICO_DIR=$enableval, exportMICO_DIR="default")28 AC_ARG_WITH(micodir, [ --with-micodir Use installed MICO directory], MICO_DIR=$enableval, MICO_DIR="default") 29 29 AC_DEFINE_UNQUOTED(MICO_DIR, "$MICO_DIR") 30 30 AC_SUBST(MICO_DIR) … … 189 189 190 190 AC_MSG_CHECKING(that the GDBM library is available) 191 if test ! -z $gdbmdir; then191 if test ! -z "$gdbmdir" ; then 192 192 # look in given directory for header file 193 193 if test -e $gdbmdir/include/gdbm.h ; then … … 206 206 fi 207 207 208 if test ! -z $GDBM_LIBPATH -a ! -z $GDBM_INCLUDE; then208 if test ! -z "$GDBM_LIBPATH" -a ! -z "$GDBM_INCLUDE" ; then 209 209 AC_MSG_RESULT($gdbmdir) ; 210 210 AC_DEFINE(HAVE_LIBGDBM , 1) … … 215 215 fi 216 216 217 if test -z $GDBM_INCLUDE; then217 if test -z "$GDBM_INCLUDE" ; then 218 218 # try in system directory 219 219 AC_TRY_COMPILE(
Note:
See TracChangeset
for help on using the changeset viewer.