Ignore:
Timestamp:
2001-05-25T11:20:55+12:00 (23 years ago)
Author:
jrm21
Message:

removed bash'isms from our own sh tests. We should probably always test any
changes, as any script that will run under solaris /bin/sh, will probably run
under any OS's /bin/sh.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/configure.in

    r2296 r2470  
    2222dnl Set use of corba
    2323dnl
    24 AC_ARG_ENABLE(corba, [  --enable-corba          Enable CORBA support], export USE_CORBA=1, export USE_CORBA=0)
     24AC_ARG_ENABLE(corba, [  --enable-corba          Enable CORBA support], USE_CORBA=1, USE_CORBA=0)
    2525AC_DEFINE_UNQUOTED(USE_CORBA, $USE_CORBA)
    2626AC_SUBST(USE_CORBA)
    2727
    28 AC_ARG_WITH(micodir, [  --with-micodir          Use installed MICO directory], export MICO_DIR=$enableval, export MICO_DIR="default")
     28AC_ARG_WITH(micodir, [  --with-micodir          Use installed MICO directory], MICO_DIR=$enableval, MICO_DIR="default")
    2929AC_DEFINE_UNQUOTED(MICO_DIR, "$MICO_DIR")
    3030AC_SUBST(MICO_DIR)
     
    189189
    190190AC_MSG_CHECKING(that the GDBM library is available)
    191 if test ! -z $gdbmdir ; then
     191if test ! -z "$gdbmdir" ; then
    192192  # look in given directory for header file
    193193  if test -e $gdbmdir/include/gdbm.h ; then
     
    206206  fi
    207207
    208   if test ! -z $GDBM_LIBPATH -a ! -z $GDBM_INCLUDE ; then
     208  if test ! -z "$GDBM_LIBPATH" -a ! -z "$GDBM_INCLUDE" ; then
    209209    AC_MSG_RESULT($gdbmdir) ;
    210210    AC_DEFINE(HAVE_LIBGDBM , 1)
     
    215215fi
    216216
    217 if test -z $GDBM_INCLUDE ; then
     217if test -z "$GDBM_INCLUDE" ; then
    218218  # try in system directory
    219219  AC_TRY_COMPILE(
Note: See TracChangeset for help on using the changeset viewer.