summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorJan Kneschke <jan@kneschke.de>2006-02-01 11:37:05 +0000
committerJan Kneschke <jan@kneschke.de>2006-02-01 11:37:05 +0000
commitff9dc1f16a2518cc8440c9497c3dc16b84a1341d (patch)
treeb394281b0e7b480fbbc2922a1d6a7ab69ea85967 /configure.in
parent78a383aff3b2eb14d1682d1a0ded9967c1bdb679 (diff)
downloadlighttpd-git-ff9dc1f16a2518cc8440c9497c3dc16b84a1341d.tar.gz
the next release is 1.4.10
- added _XOPEN_SOURCE and _BSD_SOURCE to the default features git-svn-id: svn+ssh://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@975 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 93cbb0fe..8196a696 100644
--- a/configure.in
+++ b/configure.in
@@ -1,7 +1,7 @@
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.57)
-AC_INIT(lighttpd, 1.4.9, jan@kneschke.de)
+AC_INIT(lighttpd, 1.4.10, jan@kneschke.de)
AC_CONFIG_SRCDIR([src/server.c])
AC_CANONICAL_TARGET
@@ -517,6 +517,8 @@ AC_CHECK_LIB(fcgi, FCGI_Accept, [
AM_CONDITIONAL(CHECK_WITH_FASTCGI, test "x$fastcgi_found" = xyes)
+CFLAGS="${CFLAGS} -D_XOPEN_SOURCE=600 -D_BSD_SOURCE"
+
if test "${GCC}" = "yes"; then
CFLAGS="${CFLAGS} -Wall -W -Wshadow -pedantic"
fi