the next release is 1.4.10

- added _XOPEN_SOURCE and _BSD_SOURCE to the default features


git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@975 152afb58-edef-0310-8abb-c4023f1b3aa9
This commit is contained in:
Jan Kneschke 2006-02-01 11:37:05 +00:00
parent bd8e6919d2
commit 1b517c8bfc
3 changed files with 12 additions and 2 deletions

8
NEWS
View File

@ -3,6 +3,14 @@
NEWS
====
- 1.4.10 - ...
* added fastcgi.map-extensions to mod_fastcgi
* fixed load balancing for mod_fastcgi
* fixed extra newline for syslog() in mod_accesslog
* fixed user-track cookie for IE in mod_usertrack
* fixed crash in digest handling in mod_auth
- 1.4.9 - 2006-01-14
* added server.core-files option (sandy <sandy@meebo.com>)

View File

@ -5,7 +5,7 @@ import string
from stat import *
package = 'lighttpd'
version = '1.4.9'
version = '1.4.10'
def checkCHeaders(autoconf, hdrs):
p = re.compile('[^A-Z0-9]')

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.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