[BACK] Return to configure.in CVS log [TXT][DIR] Up to Nevrax / code / nel

Diff for /code/nel/configure.in between version 1.69 and 1.70

version 1.69, 2002/04/17 07:23:45 version 1.70, 2002/04/25 17:53:36
Line 30 
Line 30 
  
 LIBTOOL_VERSION=$MAJOR_VERSION:$MINOR_VERSION:$PICO_VERSION LIBTOOL_VERSION=$MAJOR_VERSION:$MINOR_VERSION:$PICO_VERSION
  
 AC_CANONICAL_HOST 
 if test "$host_cpu" = "i386" -o "$host_cpu" = "i486" \ 
         -o "$host_cpu" = "i586" -o "$host_cpu" = "i686" \ 
         -o "$host_cpu" = "i786" ; then 
 AC_DEFINE(HAVE_X86) 
 fi 
 AC_C_BIGENDIAN 
  
 AC_SUBST(VERSION) AC_SUBST(VERSION)
 AC_SUBST(LIBTOOL_VERSION) AC_SUBST(LIBTOOL_VERSION)
  
 AM_CONFIG_HEADER(include/nelconfig.h) AM_CONFIG_HEADER(include/nelconfig.h)
  
  dnl Get host type info
  AC_CANONICAL_HOST
  if test "$host_cpu" = "i386" -o "$host_cpu" = "i486" \
          -o "$host_cpu" = "i586" -o "$host_cpu" = "i686" \
          -o "$host_cpu" = "i786"
  then
      AC_DEFINE(HAVE_X86)
  fi
  
 dnl The following hack should ensure that configure doesnt add optimizing dnl The following hack should ensure that configure doesnt add optimizing
 dnl or debugging flags to CFLAGS or CXXFLAGS dnl or debugging flags to CFLAGS or CXXFLAGS
Line 191 
Line 191 
 dnl Checks for typedefs, structures, and compiler characteristics. dnl Checks for typedefs, structures, and compiler characteristics.
 dnl ==================================================================== dnl ====================================================================
  
  dnl Test endianness
  AC_C_BIGENDIAN
  
 dnl Supress GCC "multi-character character constant" warnings. dnl Supress GCC "multi-character character constant" warnings.
 if test "X$CC" = "Xgcc"; if test "X$CC" = "Xgcc";
 then then
Line 252 
Line 255 
 dnl ==================================================================== dnl ====================================================================
 dnl LibXML dnl LibXML
  
 dnl Use C++ compiler as a default for the compilation tests. dnl Use C compiler as a default for the libxml tests.
 AC_LANG_C AC_LANG_C
  
 AM_PATH_XML2(2.0.0, , AC_MSG_ERROR(libxml2 must be installed.)) AM_PATH_XML2(2.0.0, , AC_MSG_ERROR(libxml2 must be installed.))


Legend:
Removed from v.1.69 
changed lines
 Added in v.1.70