dnl Require autoconf 2.5x now. AC_PREREQ(2.50) AC_INIT(src/ne_request.c) AC_CONFIG_HEADER(config.h) # Always defined AC_DEFINE([_GNU_SOURCE], 1, [Unconditionally define _GNU_SOURCE]) # Defined when neon is built as library AC_DEFINE(NEON_IS_LIBRARY, 1, [Define when building neon as a library]) AC_PROG_INSTALL AC_DISABLE_SHARED AC_PROG_LIBTOOL AC_EXEEXT top_builddir=`pwd` AC_SUBST(top_builddir) AC_ARG_ENABLE(webdav, AC_HELP_STRING([--disable-webdav], [disable WebDAV support]), [with_webdav=$enableval], [with_webdav=yes]) if test "$with_webdav" = "no"; then NEON_WITHOUT_WEBDAV else # Yes, we do need an XML parser. The _BUNDLED macros handle # this normally. NEON_NEED_XML_PARSER=yes fi # The bundled macros also set this, which makes sure we recurse # into the 'src' directory. NEON_BUILD_BUNDLED=yes AC_SUBST(NEON_BUILD_BUNDLED) # Define NEON_VERSION* and make the appropriate substitutions. NEON_VERSIONS # Pass the interface version on to libtool when linking libneon.la NEON_LINK_FLAGS="-version-info ${NEON_INTERFACE_VERSION}" LIBNEON_SOURCE_CHECKS # Use the libtool-type build. NEON_LIBTOOL_BUILD # Find an XML parser NEON_XML_PARSER # Extra checks for debugging, compiler warnings NEON_DEBUG # Checks to compile test suite NEON_TEST # Leave till last to prevent CFLAGS affecting checks. NEON_WARNINGS CFLAGS="$CFLAGS -I\${top_builddir}" dnl Substitute NEON_VERSION for neon-config too. AC_SUBST(NEON_VERSION) # Work out which tests to run depending on how the library has bee # configured. TESTS="\$(BASIC_TESTS)" HELPERS="" if test "$NEON_SUPPORTS_SSL" = "yes"; then TESTS="$TESTS \$(SSL_TESTS)" HELPERS="$HELPERS \$(SSL_HELPERS)" fi if test "$NEON_SUPPORTS_DAV" = "yes"; then TESTS="$TESTS \$(DAV_TESTS)" fi if test "$NEON_SUPPORTS_ZLIB" = "yes"; then TESTS="$TESTS \$(ZLIB_TESTS)" fi AC_SUBST(HELPERS) AC_SUBST(TESTS) AC_CONFIG_FILES([neon-config], [chmod +x neon-config]) AC_OUTPUT([Makefile src/Makefile test/Makefile]) for d in test/common; do test -d test/common || mkdir test/common done cat <