summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorJan Kneschke <jan@kneschke.de>2005-12-15 14:30:46 +0000
committerJan Kneschke <jan@kneschke.de>2005-12-15 14:30:46 +0000
commit2fe31be5c5e541bcee3e94f8b5cdcb8e589aa0e8 (patch)
tree6b00e5fce01b216dcccf855f65d8edf98935c318 /SConstruct
parent70436a8805984f6433b74040327a9a0eaf1a58af (diff)
downloadlighttpd-git-2fe31be5c5e541bcee3e94f8b5cdcb8e589aa0e8.tar.gz
- next release is 1.4.9
- added checks for prctl to enable core files after setuid() <sandy@meebo.com> git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@889 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct7
1 files changed, 5 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct
index e2ac0023..318cc6b0 100644
--- a/SConstruct
+++ b/SConstruct
@@ -5,7 +5,7 @@ import string
from stat import *
package = 'lighttpd'
-version = '1.4.7'
+version = '1.4.9'
def checkCHeaders(autoconf, hdrs):
p = re.compile('[^A-Z0-9]')
@@ -141,12 +141,13 @@ if 1:
syslog.h
stdint.h
inttypes.h
+ sys/prctl.h
sys/wait.h""", "\n"))
checkFuncs(autoconf, Split('fork stat lstat strftime dup2 getcwd inet_ntoa inet_ntop memset mmap munmap strchr \
strdup strerror strstr strtol sendfile getopt socket \
gethostbyname poll sigtimedwait epoll_ctl getrlimit chroot \
- getuid select signal pathconf madvise\
+ getuid select signal pathconf madvise prctl\
writev sigaction sendfile64 send_file kqueue port_create localtime_r'))
checkTypes(autoconf, Split('pid_t size_t off_t'))
@@ -158,6 +159,8 @@ if 1:
if env['with_fam']:
if autoconf.CheckLibWithHeader('fam', 'fam.h', 'C'):
autoconf.env.Append(CPPFLAGS = [ '-DHAVE_FAM_H', '-DHAVE_LIBFAM' ], LIBS = 'fam')
+ checkFuncs(autoconf, ['FAMNoExists']);
+
if autoconf.CheckLibWithHeader('crypt', 'crypt.h', 'C'):
autoconf.env.Append(CPPFLAGS = [ '-DHAVE_CRYPT_H', '-DHAVE_LIBCRYPT' ], LIBCRYPT = 'crypt')