a13d856e8f
* use libtool to compile/link all programs * remove */Makefile.in and remove them from configure * remove autom4te.cache after running autoconf * remove .o from the FILEMAP logic in configure and the Make system; provides more flexibility in the Makefile to use it * for VPATH builds: create the build subdirs by running "make mkdir-init" from the configure script * adjust .cvsignore files to account for presence of .libs now
97 lines
2.2 KiB
Plaintext
97 lines
2.2 KiB
Plaintext
dnl configuration script for expat
|
|
dnl Process this file with autoconf to produce a configure script.
|
|
dnl
|
|
dnl Copyright 2000 Clark Cooper
|
|
dnl
|
|
dnl This file is part of EXPAT.
|
|
dnl
|
|
dnl EXPAT is free software; you can redistribute it and/or modify it
|
|
dnl under the terms of the License (based on the MIT/X license) contained
|
|
dnl in the file COPYING that comes with this distribution.
|
|
dnl
|
|
|
|
AC_INIT(Makefile.in)
|
|
AC_CONFIG_AUX_DIR(conftools)
|
|
|
|
|
|
dnl
|
|
dnl Increment LIBREVISION if source code has changed at all
|
|
dnl
|
|
dnl If the API has changed, increment LIBCURRENT and set LIBREVISION to 0
|
|
dnl
|
|
dnl If the API changes compatibly (i.e. simply adding a new function
|
|
dnl without changing or removing earlier interfaces), then increment LIBAGE.
|
|
dnl
|
|
dnl If the API changes incompatibly set LIBAGE back to 0
|
|
dnl
|
|
|
|
LIBCURRENT=1
|
|
LIBREVISION=0
|
|
LIBAGE=1
|
|
|
|
AC_CONFIG_HEADER(config.h)
|
|
|
|
sinclude(conftools/libtool.m4)
|
|
sinclude(conftools/ac_c_bigendian_cross.m4)
|
|
|
|
AC_LIBTOOL_WIN32_DLL
|
|
AC_PROG_LIBTOOL
|
|
|
|
AC_SUBST(LIBCURRENT)
|
|
AC_SUBST(LIBREVISION)
|
|
AC_SUBST(LIBAGE)
|
|
|
|
dnl Checks for programs.
|
|
AC_PROG_CC
|
|
AC_PROG_INSTALL
|
|
|
|
if test "$GCC" = yes ; then
|
|
dnl
|
|
dnl Be careful about adding the -fexceptions option; some versions of
|
|
dnl don't support it and it causes extra warnings that are only
|
|
dnl distracting; avoid.
|
|
dnl
|
|
OLDCFLAGS="$CFLAGS -Wall -Wmissing-prototypes -Wstrict-prototypes"
|
|
CFLAGS="$OLDCFLAGS -fexceptions"
|
|
AC_MSG_CHECKING(whether gcc accepts -fexceptions)
|
|
AC_TRY_COMPILE(,(void)1,
|
|
AC_MSG_RESULT(yes),
|
|
AC_MSG_RESULT(no); CFLAGS="$OLDCFLAGS")
|
|
fi
|
|
|
|
dnl Checks for header files.
|
|
AC_HEADER_STDC
|
|
AC_CHECK_HEADERS(fcntl.h unistd.h)
|
|
|
|
dnl Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
dnl Note: Avoid using AC_C_BIGENDIAN because it does not
|
|
dnl work in a cross compile.
|
|
AC_C_BIGENDIAN_CROSS
|
|
|
|
AC_C_CONST
|
|
AC_TYPE_OFF_T
|
|
AC_TYPE_SIZE_T
|
|
|
|
dnl Checks for library functions.
|
|
|
|
AC_FUNC_MEMCMP
|
|
AC_FUNC_MMAP
|
|
|
|
if test "$ac_cv_func_mmap_fixed_mapped" = "yes"; then
|
|
FILEMAP=unixfilemap
|
|
else
|
|
FILEMAP=readfilemap
|
|
fi
|
|
AC_SUBST(FILEMAP)
|
|
|
|
AC_CHECK_FUNCS(memmove bcopy)
|
|
|
|
AC_OUTPUT(Makefile)
|
|
|
|
abs_srcdir="`cd $srcdir && pwd`"
|
|
abs_builddir="`pwd`"
|
|
if test "$abs_srcdir" != "$abs_builddir"; then
|
|
make mkdir-init
|
|
fi
|