Home
last modified time | relevance | path

Searched refs:zstd (Results 1 – 9 of 9) sorted by relevance

/lighttpd1.4/
H A Dmeson.build31 # $ for i in liblzma libxml2 lua lz4 pcre pcre2 sqlite3 xxhash zlib zstd; do meson wrap install $i;…
32 # $ for i in liblzma libxml2 lua lz4 pcre pcre2 sqlite3 xxhash zlib zstd; do meson wrap update $i; …
H A DINSTALL114 libzstd # zstd ./configure --with-zstd
191 …$ sudo port install autoconf automake cmake libtool m4 pcre2 pkgconfig zlib zstd brotli openssl li…
H A Dconfigure.ac969 dnl zstd
971 AC_MSG_CHECKING([for zstd support])
972 AC_ARG_WITH([zstd], optwith
973 [AS_HELP_STRING([--with-zstd],
974 [Enable zstd support for mod_deflate]
986 AC_CHECK_HEADERS([zstd.h], [],
987 [AC_MSG_ERROR([zstd headers not found, install them or build without --with-zstd])]
989 AC_CHECK_LIB([zstd], [ZSTD_versionNumber],
991 [AC_MSG_ERROR([zstd library not found, install it or build without --with-zstd])]
1730 lighty_track_feature "compress-zstd" "" \
H A DSConstruct273 BoolVariable('with_zstd', 'enable zstd compression', 'no'),
728 if not autoconf.CheckLibWithHeader('zstd', 'zstd.h', 'C'):
729 fail("Couldn't find zstd")
732 LIBZSTD = 'zstd',
H A Dmeson_options.txt150 description: 'with zstd-support for mod_deflate [default: off]',
H A DNEWS188 * [build] autoconf: report if building with zstd
685 * [build] fix zstd option in meson (fixes #3076)
1039 * [mod_deflate] support Accept-Encoding: zstd
1040 * [mod_deflate] use zstd streaming API
1042 * [doc] add --with-zstd to INSTALL
1060 * [mod_deflate] use zstd typedefs (minor cleanup)
1061 * [mod_deflate] compat with zstd < v1.4.0
/lighttpd1.4/scripts/
H A Dci-build.sh21 --with-zlib --with-zstd --with-brotli --with-bzip2 \
42 --with-zlib --with-zstd --with-brotli --with-bzip2 \
/lighttpd1.4/src/
H A Dmod_deflate.c187 } zstd; member
451 params->zstd.clevel = ZSTD_CLEVEL_DEFAULT; in mod_deflate_parse_params()
452 params->zstd.strategy = 0; /*(use default strategy)*/ in mod_deflate_parse_params()
453 params->zstd.windowLog = 0;/*(use default windowLog)*/ in mod_deflate_parse_params()
504 params->zstd.clevel = v; in mod_deflate_parse_params()
522 params->zstd.strategy = v; /* 1 .. 9 */ in mod_deflate_parse_params()
1211 if (params->zstd.clevel && params->zstd.clevel != ZSTD_CLEVEL_DEFAULT) { in stream_zstd_init()
1212 const int level = params->zstd.clevel; in stream_zstd_init()
1220 if (params->zstd.strategy) in stream_zstd_init()
1222 params->zstd.strategy); in stream_zstd_init()
[all …]
H A DCMakeLists.txt35 option(WITH_ZSTD "with zstd-support for mod_deflate [default: off]")
703 check_include_files(zstd.h HAVE_ZSTD_H)
704 check_library_exists(zstd ZSTD_versionNumber "" HAVE_ZSTD)
1073 set(L_MOD_DEFLATE ${L_MOD_DEFLATE} zstd)