summaryrefslogtreecommitdiffhomepage
path: root/auto/sources
diff options
context:
space:
mode:
Diffstat (limited to 'auto/sources')
-rw-r--r--auto/sources16
1 files changed, 16 insertions, 0 deletions
diff --git a/auto/sources b/auto/sources
index f34d7fd7..3feafa2a 100644
--- a/auto/sources
+++ b/auto/sources
@@ -107,6 +107,7 @@ NXT_LIB_SRCS=" \
src/nxt_http_websocket.c \
src/nxt_h1proto_websocket.c \
src/nxt_fs.c \
+ src/nxt_http_compression.c \
"
@@ -211,6 +212,21 @@ if [ $NXT_POLARSSL = YES ]; then
fi
+if [ "$NXT_HAVE_ZLIB" = "YES" ]; then
+ NXT_LIB_SRCS="$NXT_LIB_SRCS src/nxt_zlib.c"
+fi
+
+
+if [ "$NXT_HAVE_ZSTD" = "YES" ]; then
+ NXT_LIB_SRCS="$NXT_LIB_SRCS src/nxt_zstd.c"
+fi
+
+
+if [ "$NXT_HAVE_BROTLI" = "YES" ]; then
+ NXT_LIB_SRCS="$NXT_LIB_SRCS src/nxt_brotli.c"
+fi
+
+
if [ "$NXT_REGEX" = "YES" ]; then
if [ "$NXT_HAVE_PCRE2" = "YES" ]; then
NXT_LIB_SRCS="$NXT_LIB_SRCS $NXT_LIB_PCRE2_SRCS"