summaryrefslogtreecommitdiff
path: root/SConstruct
Commit message (Collapse)AuthorAgeFilesLines
* - next is 1.4.71Glenn Strauss2023-05-101-1/+1
|
* [core] posix_spawn_file_actions_addclosefrom_np()Glenn Strauss2023-05-081-0/+1
| | | | use posix_spawn_file_actions_addclosefrom_np() where available
* [core] use posix_spawn() where availableGlenn Strauss2023-05-031-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | use posix_spawn() where available use posix_spawn_file_actions_addfchdir_np() where available Using posix_spawn() reduces initial execution overhead of CGI programs; posix_spawn() is often faster than application code wrapping and calling traditional fork(),execve(). (history: fdevent.c posix_spawn code based on fdio.c:fdio_ipc_spawn() from 2015 on one of my unpublished branches. The inability to chdir() delayed inclusion in lighttpd, as the CGI specification says: "The current working directory for the script SHOULD be set to the directory containing the script." e.g. chdir() to target program directory before CGI execution) posix_spawn_file_actions_addfchdir_np() is a new(er) extension supported in glibc 2.29+, musl libc, FreeBSD ≥ 13.1, macOS ≥ 10.15 according to https://cygwin.com/pipermail/cygwin/2023-April/253505.html https://cygwin.com/pipermail/cygwin/2023-April/253526.html https://sourceware.org/bugzilla/show_bug.cgi?id=17405 POSIX Issue 8 plans to include posix_spawn_file_actions_addfchdir(): https://www.austingroupbugs.net/view.php?id=1208
* - next is 1.4.70Glenn Strauss2023-02-101-1/+1
|
* - next is 1.4.69Glenn Strauss2023-01-031-1/+1
|
* - next is 1.4.68Glenn Strauss2022-09-171-1/+1
|
* - next is 1.4.67Glenn Strauss2022-08-071-1/+1
|
* - next is 1.4.66Glenn Strauss2022-06-071-1/+1
|
* [build] -D_DEFAULT_SOURCE consistency in buildsGlenn Strauss2022-03-291-0/+1
| | | | (previously defined in src/CMakeLists.txt)
* [mod_deflate] --with-libdeflate to use libdeflateGlenn Strauss2022-02-141-0/+10
| | | | | | configure --with-libdeflate option to use libdeflate (must also configure --enable-mmap for mod_deflate to use libdeflate on input files larger than 64kB; libdeflate not used on files <= 64kB)
* - next is 1.4.65Glenn Strauss2022-01-191-1/+1
|
* [build] check headers before some funcsGlenn Strauss2022-01-101-1/+0
| | | | skip some func checks (slow) if expected header does not exist
* [build] collect Sun-specific headers and funcsGlenn Strauss2022-01-081-0/+1
| | | | sendfilev() is Solaris-specific (and other OS have other alternatives)
* [build] collect Sun-specific headers and funcsGlenn Strauss2022-01-081-5/+7
|
* [build] feature consistency between build typesGlenn Strauss2022-01-051-14/+1
|
* [core] server.core-files support for solaris (fixes #3135)David Carlier2022-01-051-0/+3
| | | | | | | | | | | | server.core-files support for solaris based systems. - using setpflags and disable process tracing protection for the current process. (edited: gstrauss) x-ref: "server.core-files support on Solaris based system" https://redmine.lighttpd.net/issues/3135
* [build] default --with-pcre2 unless --with-pcreGlenn Strauss2022-01-031-3/+3
|
* [multiple] remove long-deprecated modulesGlenn Strauss2022-01-031-30/+1
| | | | | x-ref: https://wiki.lighttpd.net/Docs_ConfigurationOptions#Deprecated
* [build] feature consistency between build typesGlenn Strauss2022-01-031-7/+3
| | | | | upate config.h.cmake for missing defines minor adjustments to other builds for features consistency
* [core] server.core-files support on FreeBSD (fixes #3128)Glenn Strauss2022-01-011-0/+1
| | | | | | | | (thx devnexen) x-ref: "server.core-files support on FreeBSD proposal" https://redmine.lighttpd.net/issues/3128
* [build] do not check for prctl; HAVE_PRCTL unusedGlenn Strauss2022-01-011-1/+0
|
* - next is 1.4.64Glenn Strauss2021-12-041-1/+1
|
* - next is 1.4.63Glenn Strauss2021-12-021-1/+1
|
* [core] pcre2 support (--with-pcre2)Glenn Strauss2021-11-221-2/+8
| | | | | | x-ref: "lighttpd: depends on obsolete pcre3 library" https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1000063
* - next is 1.4.62Glenn Strauss2021-10-281-1/+1
|
* [build] check for preadv(), pwritev()Glenn Strauss2021-10-271-0/+2
|
* - next is 1.4.61Glenn Strauss2021-10-031-1/+1
|
* [build] check for pread(), pwrite(), splice()Glenn Strauss2021-09-301-1/+3
|
* [multiple] fdevent_mkostemp()Glenn Strauss2021-09-301-0/+1
| | | | | | fdevent_mkostemp() with flags arg so that caller can pass O_APPEND renamed from fdevent_mkstemp_append(), previously always O_APPEND
* [build] propagate HAVE_DLFCN_H in buildsGlenn Strauss2021-09-081-0/+1
|
* [core] periodically malloc_trim() to release mem (fixes #3084)Glenn Strauss2021-09-081-0/+1
| | | | | | x-ref: "Memory fragmentation with HTTP/2 enabled" https://redmine.lighttpd.net/issues/3084
* [build] look for malloc.h and mallopt()Glenn Strauss2021-09-081-0/+2
|
* [core] Y2038: use _TIME_BITS=64 on 32-bit glibcGlenn Strauss2021-09-041-0/+1
| | | | | | | Y2038: use _TIME_BITS=64 on 32-bit glibc platforms reference: https://www.phoronix.com/scan.php?page=news_item&px=Glibc-More-Y2038-Work
* [build] look for port.h on Solaris, not sys/port.hGlenn Strauss2021-08-271-1/+1
|
* [build] look for memcpy and define HAVE_MEMCPYGlenn Strauss2021-08-271-0/+1
| | | | (HAVE_MEMCPY checked by ancient MD5 implementation in algo_md5.c)
* [core] ck.[ch] - C11 Annex K wrappersGlenn Strauss2021-08-271-0/+1
| | | | | | | | (selected functions; not complete) (import from one of my development branches from 2016) define safe_memclear() -> ck_memzero() for transition
* [build] check for mempcpy()Glenn Strauss2021-04-021-0/+1
|
* [build] use -pipe with gcc and clangGlenn Strauss2021-02-071-1/+1
|
* [build] fix SCons pkg-config err handling (fixes #3066)Glenn Strauss2021-02-071-0/+2
| | | | | | | | (thx elchenberg) x-ref: "OSError in SConstruct on Alpine Linux" https://redmine.lighttpd.net/issues/3066
* - next is 1.4.60Glenn Strauss2021-02-021-1/+1
|
* [build] fix typo in SConstruct (fixes #3061)Glenn Strauss2021-01-291-1/+1
| | | | | | | | (thx eryretqwewrqr) x-ref: "NameError ins SConstruct" https://redmine.lighttpd.net/issues/3061
* [mod_deflate] support Accept-Encoding: zstdGlenn Strauss2021-01-121-0/+10
|
* - next is 1.4.59Glenn Strauss2020-12-271-1/+1
|
* [core] http_date.[ch] encapsulate HTTP-date parseGlenn Strauss2020-12-241-0/+1
| | | | | | http_date.[ch] encapsulate HTTP-date parse/compare (import from one of my development branches from 2015)
* [tests] remove FastCGI test dependency on libfcgiGlenn Strauss2020-12-231-5/+0
| | | | | | | - rewrite fcgi-responder as standalone app fcgi-responder is now a minimal, standalone FastCGI server for tests - remove dependency on fcgi-devel package - merge fcgi-auth into fcgi-responder
* - next is 1.4.58Glenn Strauss2020-12-171-1/+1
|
* [build] fix SCons build when building all TLS modsGlenn Strauss2020-12-051-3/+10
|
* [core] prefer inet_aton() over inet_addr()Glenn Strauss2020-12-051-1/+1
|
* - next is 1.4.57Glenn Strauss2020-11-291-1/+1
|
* [build] detect inotify header <sys/inotify.h>Glenn Strauss2020-11-041-1/+2
|