Diff for /rpl/Attic/configure.in between versions 1.41 and 1.42

version 1.41, 2010/09/07 12:54:03 version 1.42, 2010/09/07 20:59:04
Line 761  AC_SUBST(POSTGRESQL_SUPPORT) Line 761  AC_SUBST(POSTGRESQL_SUPPORT)
 AC_SUBST(libPgSQLinc)  AC_SUBST(libPgSQLinc)
 AC_SUBST(libPgSQLlib)  AC_SUBST(libPgSQLlib)
   
   # with_postgresql : check [pas défini], yes [uniquement --with],
   # no [--without], valeur [--with=valeur].
   AC_ARG_WITH(bourne_shell,
   [  --with-bourne-shell=PATH  specify path for OS/2 bourne shell],
   [], [with_bourne_shell=no])
   
   if test "x$with_bourne_shell" = xyes; then
       AC_MSG_ERROR([You have to specify a valide shell path !])
   fi
   
   if test "x$with_bourne_shell" = xno; then
       if test $(uname) = "OS/2"; then
           AC_MSG_ERROR([With OS/2 or eComstation, you have to specify a valide shell path !])
       fi
   
       BSH_PATH=
   else
       if test ! -x $with_bourne_shell; then
           AC_MSG_ERROR([$with_bourne_shell is not executable !])
       fi
   
       if test $(uname) = "OS/2"; then
           BSH_PATH=-DBOURNE_SHELL=\"\\\"$with_bourne_shell\\\"\"
       else
           AC_MSG_WARN([--with-bourne-shell ignored])
           BSH_PATH=
       fi
   fi
   
 dnl Checks for sizes  dnl Checks for sizes
 AC_CHECK_SIZEOF(void *, 4)  AC_CHECK_SIZEOF(void *, 4)
 AC_CHECK_SIZEOF(char, 1)  AC_CHECK_SIZEOF(char, 1)
Line 1016  AC_SUBST(IPCS_SYSV) Line 1045  AC_SUBST(IPCS_SYSV)
 AC_SUBST(SEMUN)  AC_SUBST(SEMUN)
 AC_SUBST(IPV6)  AC_SUBST(IPV6)
 AC_SUBST(BROKEN_SIGINFO)  AC_SUBST(BROKEN_SIGINFO)
   AC_SUBST(BSH_PATH)
   
 AC_SUBST(NCURSES)  AC_SUBST(NCURSES)
 AC_SUBST(READLINE)  AC_SUBST(READLINE)

Removed from v.1.41  
changed lines
  Added in v.1.42


CVSweb interface <joel.bertrand@systella.fr>