this is the merge branch for 1.4.0

git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@517 152afb58-edef-0310-8abb-c4023f1b3aa9
svn/tags/lighttpd-1.4.2
Jan Kneschke 2005-08-08 13:45:45 +00:00
parent 69d07f6dd4
commit 34b7365eb0
1 changed files with 12 additions and 1 deletions

View File

@ -1,7 +1,7 @@
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.57)
AC_INIT(lighttpd, 1.3.16, jan@kneschke.de)
AC_INIT(lighttpd, 1.4.0, jan@kneschke.de)
AC_CONFIG_SRCDIR([src/server.c])
AC_CANONICAL_TARGET
@ -245,6 +245,17 @@ AC_CHECK_LIB(bz2, BZ2_bzCompress, [
])
AC_SUBST(BZ_LIB)
AC_MSG_CHECKING(for gamin)
AC_ARG_WITH(gamin, AC_HELP_STRING([--with-gamin],[gamin for reducing number of stat() calls]),
[AC_MSG_RESULT(yes)
PKG_CHECK_MODULES(FAM, gamin, [
AC_DEFINE([HAVE_LIBFAM], [1], [libfam])
AC_DEFINE([HAVE_FAM_H], [1], [fam.h])
])
],[AC_MSG_RESULT(no)])
AC_SUBST(FAM_LIB)
AC_MSG_CHECKING(for gdbm)
AC_ARG_WITH(gdbm, AC_HELP_STRING([--with-gdbm],[gdbm storage for mod_trigger_b4_dl]),