Diff for /parser3/Attic/configure.in between versions 1.144 and 1.151

version 1.144, 2012/06/09 21:58:52 version 1.151, 2012/06/12 20:18:21
Line 133  fi Line 133  fi
 )  )
   
   
 dnl Dynamic libstdc++ argument  
 AC_ARG_WITH(dynamic-stdcpp, [  --with-dynamic-stdcpp   link libstdc++ dynamically  
                           by default, libstdc++ is linked statically],[  
         AC_MSG_WARN(libstdc++ will be linked dynamically)  
         CPP_LIBS="-lstdc++"  
 ],[  
         CPP_LIBS="-Wl,-Bstatic -lstdc++ -Wl,-Bdynamic"  
 ])  
 AC_SUBST(CPP_LIBS)  
   
   
 dnl GC argument  dnl GC argument
 GC_LIB_NAME=gc  GC_LIB_NAME=gc
 AC_ARG_WITH(shared-gc,[  --with-shared-gc[=D]      D is the directory where  AC_ARG_WITH(shared-gc,[  --with-shared-gc[=D]      D is the directory where
Line 333  AC_ARG_WITH(apache,[  --with-apache=FILE Line 322  AC_ARG_WITH(apache,[  --with-apache=FILE
         APACHE=`$APXS -q TARGET 2>/dev/null`          APACHE=`$APXS -q TARGET 2>/dev/null`
   
         if test -z "$APACHE"; then          if test -z "$APACHE"; then
                 AC_MSG_ERROR($APXS does not seem to be valid apache apxs utility path)                  APXS=`which apxs2 2>/dev/null`
                   APACHE=`$APXS -q TARGET 2>/dev/null`
   
                   if test -z "$APACHE"; then
                           AC_MSG_ERROR($APXS does not seem to be valid apache apxs utility path)
                   fi
         fi          fi
   
         APACHE_MAIN_INC=`$APXS -q INCLUDEDIR`          APACHE_MAIN_INC=`$APXS -q INCLUDEDIR`
Line 349  AM_CONDITIONAL(COMPILE_APACHE_MODULE, te Line 343  AM_CONDITIONAL(COMPILE_APACHE_MODULE, te
   
 dnl Enable building of the convenience library  dnl Enable building of the convenience library
 LT_CONFIG_LTDL_DIR(src/lib/ltdl)  LT_CONFIG_LTDL_DIR(src/lib/ltdl)
 LT_INIT(dlopen win32-dll)  LT_INIT(disable-static dlopen win32-dll)
 LTDL_INIT  LTDL_INIT
   
   
 dnl Configure libtool  
 AC_DISABLE_STATIC  
   
   
 dnl Checks for typedefs, structures, and compiler characteristics.  dnl Checks for typedefs, structures, and compiler characteristics.
 AC_C_BIGENDIAN(  AC_C_BIGENDIAN(
         AC_DEFINE(PA_BIG_ENDIAN,,compile for sparc processor)          AC_DEFINE(PA_BIG_ENDIAN,,compile for sparc processor)

Removed from v.1.144  
changed lines
  Added in v.1.151


E-mail: