Diff for /XML/configure.in between versions 1.28 and 1.29

version 1.28, 2000/04/03 18:45:48 version 1.29, 2000/04/30 09:10:18
Line 58  dnl Checks for library functions. Line 58  dnl Checks for library functions.
 AC_FUNC_STRFTIME  AC_FUNC_STRFTIME
 AC_CHECK_FUNCS(strdup strndup strerror snprintf)  AC_CHECK_FUNCS(strdup strndup strerror snprintf)
 AC_CHECK_FUNCS(finite isinf isnan isnand strftime localtime)  AC_CHECK_FUNCS(finite isinf isnan isnand strftime localtime)
   AC_CHECK_FUNCS(iconv)
   
 dnl  dnl
 dnl Workaround wor HP native compiler  dnl Workaround wor HP native compiler
Line 148  fi Line 149  fi
 AC_SUBST(WITH_XPATH)  AC_SUBST(WITH_XPATH)
 AC_SUBST(XPATH_OBJ)  AC_SUBST(XPATH_OBJ)
   
   AC_ARG_WITH(iconv, [  --with-iconv            Add the ICONV support (off)])
   if test "$with_iconv" = "yes" ; then
       if test "$have_iconv" != "" ; then
           echo Iconv support not found
           WITH_ICONV=0
       else
           WITH_ICONV=1
       fi
   else    
       echo Disabling ICONV support
       WITH_ICONV=0
   fi
   AC_SUBST(WITH_ICONV)
   AC_SUBST(ICONV_OBJ)
   
 AC_ARG_WITH(debug, [  --with-debug            Add the debugging module (on)])  AC_ARG_WITH(debug, [  --with-debug            Add the debugging module (on)])
 if test "$with_debug" = "no" ; then  if test "$with_debug" = "no" ; then
     echo Disabling DEBUG support      echo Disabling DEBUG support

Removed from v.1.28  
changed lines
  Added in v.1.29


Webmaster