| version 1.69, 2002/04/17 07:23:45 |
version 1.70, 2002/04/25 17:53:36 |
| |
| | |
| 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 |
| |
| 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 |
| |
| 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.)) |