Diff for /parser3/Attic/configure.in between versions 1.40 and 1.41

version 1.40, 2002/09/17 11:24:20 version 1.41, 2002/09/17 11:29:02
Line 18  else Line 18  else
         rm -f $srcdir/src/include/pa_version.h.new          rm -f $srcdir/src/include/pa_version.h.new
 fi  fi
   
   dnl AC_CANONICAL_SYSTEM
   AC_CANONICAL_HOST
   AC_SUBST(host_os)
   
   dnl Checks for programs.
 AC_PROG_INSTALL  AC_PROG_INSTALL
   AC_PROG_MAKE_SET
   AC_PROG_RANLIB
   AC_PROG_AWK
   
   AC_PROG_YACC
   if test "$YACC" != "bison -y"; then
       AC_MSG_WARN(to regenerate Parser grammar YOU WOULD NEED BISON)
   else
       AC_MSG_CHECKING(bison version)
       oldIFS=$IFS; IFS=.
       set `bison -V | sed -e 's/^GNU Bison version //'`
       IFS=$oldIFS
       if test "$1" = "1" -a "$2" -lt "25"; then
           AC_MSG_WARN(Bison 1.25 or newer needed to regenerate Parser compiler (found $1.$2).)
       fi
       AC_MSG_RESULT($1.$2 (ok))
   fi
   
   dnl the order of C, C++ is important
 AC_PROG_CC  AC_PROG_CC
 AC_LANG_C AC_C_INLINE  AC_LANG_C AC_C_INLINE
 AC_PROG_CXX  AC_PROG_CXX
 AC_LANG_CPLUSPLUS  AC_LANG_CPLUSPLUS
   
   
 dnl Arguments  dnl Arguments
   
 AC_ARG_ENABLE(link-libstdcpp, [  --disable-link-libstdcpp to disable libstdc++ linkage,  AC_ARG_ENABLE(link-libstdcpp, [  --disable-link-libstdcpp to disable libstdc++ linkage,
Line 336  AC_SUBST(APACHE13) Line 359  AC_SUBST(APACHE13)
 AM_CONDITIONAL(COMPILE_APACHE13_MODULE, test -n "$APACHE13")  AM_CONDITIONAL(COMPILE_APACHE13_MODULE, test -n "$APACHE13")
   
   
 dnl AC_CANONICAL_SYSTEM  
 AC_CANONICAL_HOST  
 AC_SUBST(host_os)  
   
 dnl Checks for programs.  
 AC_PROG_INSTALL  
 AC_PROG_MAKE_SET  
 AC_PROG_RANLIB  
 AC_PROG_AWK  
   
 AC_PROG_YACC  
 if test "$YACC" != "bison -y"; then  
     AC_MSG_WARN(to regenerate Parser grammar YOU WOULD NEED BISON)  
 else  
     AC_MSG_CHECKING(bison version)  
     oldIFS=$IFS; IFS=.  
     set `bison -V | sed -e 's/^GNU Bison version //'`  
     IFS=$oldIFS  
     if test "$1" = "1" -a "$2" -lt "25"; then  
         AC_MSG_WARN(Bison 1.25 or newer needed to regenerate Parser compiler (found $1.$2).)  
     fi  
     AC_MSG_RESULT($1.$2 (ok))  
 fi  
   
 dnl Enable building of the convenience library  dnl Enable building of the convenience library
 dnl and set LIBLTDL accordingly  dnl and set LIBLTDL accordingly
 AC_LIBLTDL_CONVENIENCE(src/lib/libltdl)  AC_LIBLTDL_CONVENIENCE(src/lib/libltdl)

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


E-mail: