summaryrefslogtreecommitdiff
path: root/meson_options.txt
Commit message (Collapse)AuthorAgeFilesLines
* [meson] use non string true/falseRosen Penev2022-11-231-4/+4
| | | | | | | | | muon (a meson reimplementation) errors as it does not support having a string for a boolean type. Signed-off-by: Rosen Penev <rosenp@gmail.com> github: #120
* [meson] turn pcre into a combo optionRosen Penev2022-09-231-3/+4
| | | | | | | | | A single with_pcre option is better than with_pcre2 and with_pcre, but retain with_pcre2 for compatibility with existing usage Signed-off-by: Rosen Penev <rosenp@gmail.com> github: #116
* [meson] use feature optionsRosen Penev2022-09-231-38/+38
| | | | | | | | | | | | | Simpler. Fixed up several wrong stuff such as zstd - wrong name zlib - extra windows handling unnecessary; dependency('zlib') is special and handles those cases sasl2 - wrong name Signed-off-by: Rosen Penev <rosenp@gmail.com> github: #116
* [build] update descriptions to remove old lua verGlenn Strauss2022-05-241-1/+1
|
* [mod_deflate] --with-libdeflate to use libdeflateGlenn Strauss2022-02-141-0/+5
| | | | | | 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)
* [build] meson -Dlua_version=... to specify lua verGlenn Strauss2022-01-211-0/+5
| | | | | | | (thx herbmillerjr) x-ref: https://github.com/gentoo/gentoo/pull/23857
* [build] use -fstack-protector-strong w/ extra warnGlenn Strauss2022-01-081-1/+1
| | | | use -fstack-protector-strong if configured with --enable-extra-warnings
* [build] adjust help strings for pcre2 defaultGlenn Strauss2022-01-071-2/+2
|
* [build] default --with-pcre2 unless --with-pcreGlenn Strauss2022-01-031-2/+2
|
* [multiple] remove long-deprecated modulesGlenn Strauss2022-01-031-15/+0
| | | | | x-ref: https://wiki.lighttpd.net/Docs_ConfigurationOptions#Deprecated
* [core] pcre2 support (--with-pcre2)Glenn Strauss2021-11-221-0/+5
| | | | | | x-ref: "lighttpd: depends on obsolete pcre3 library" https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1000063
* [meson] add with_zstd to meson_options.txtGlenn Strauss2021-02-031-0/+5
|
* [build] meson --with-xxhash optionlighttpd-1.4.56-rc7Glenn Strauss2020-10-291-0/+5
|
* [build] adjust meson.build for use by OpenWRTGlenn Strauss2020-10-281-5/+5
|
* [doc] change mod_compress refs to mod_deflateGlenn Strauss2020-10-211-2/+2
|
* [mod_deflate] Brotli supportGlenn Strauss2020-08-021-0/+5
| | | | configuration option: ./configure --with-brotli
* [mod_nss] NSS option for TLS (fixes #1218)Glenn Strauss2020-07-081-0/+5
| | | | | | | | | | | | (experimental) WARNING: EXPERIMENTAL code sketch; mod_nss is INCOMPLETE and UNTESTED mod_nss supports most ssl.* config options supported by mod_openssl x-ref: "alternate ssl backend" https://redmine.lighttpd.net/issues/1218
* [mod_gnutls] GnuTLS option for TLS (fixes #109)Glenn Strauss2020-07-081-0/+5
| | | | | | | | | | (experimental) mod_gnutls supports most ssl.* config options supported by mod_openssl x-ref: "GnuTLS support for the mod_ssl" https://redmine.lighttpd.net/issues/109
* [mod_mbedtls] mbedTLS option for TLSGlenn Strauss2020-07-081-0/+5
| | | | | | | | | (experimental) mod_mbedtls supports most ssl.* config options supported by mod_openssl thx Ward Willats for the initial discussion and attempt in the comments https://redmine.lighttpd.net/boards/3/topics/7029
* [multiple] ./configure --with-nettle to use NettleGlenn Strauss2020-07-081-0/+5
| | | | | | | | | ./configure --with-nettle to use Nettle crypto lib for algorithms, instead of OpenSSL or wolfSSL. Note: Nettle does not provide TLS. x-ref: "How to use SHA-256 without OpenSSL?" https://redmine.lighttpd.net/boards/2/topics/8903
* [mod_maxminddb] MaxMind GeoIP2 supportGlenn Strauss2019-05-261-0/+5
|
* [build] remove -Wdeclaration-after-statementGlenn Strauss2019-03-091-1/+1
| | | | | Declarations after statements has been permitted since C99. (That was 20 years ago!)
* [build] meson support for wolfSSLGlenn Strauss2018-10-071-0/+5
| | | | meson.build needed to change some args to lists to support meson objects
* [mod_authn_pam] mod_auth PAM support (fixes #688)Glenn Strauss2018-09-231-0/+5
| | | | | | x-ref: "auth via pam" https://redmine.lighttpd.net/issues/688
* [mod_authn_sasl] SASL auth (new) (fixes #2275)Glenn Strauss2017-11-051-0/+5
| | | | | | | | | | | | | | | (experimental) HTTP Basic authentication using saslauthd server.modules += ( "mod_auth" ) server.modules += ( "mod_authn_sasl" ) auth.backend = "sasl" auth.backend.sasl.opts = ( "pwcheck_method" => "saslauthd" ) # default x-ref: "SASL auth like libapache2-mod-authn-sasl" https://redmine.lighttpd.net/issues/2275
* [meson] new build systemStefan Bühler2017-10-281-0/+123
Needed to extend lemon to take an output path parameter.