diff options
author | June McEnroe <june@causal.agency> | 2019-01-07 01:11:20 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-01-07 01:11:20 -0500 |
commit | b9551af817e9a2ba90289d9c7de0e4a34f92287d (patch) | |
tree | 53f6c362880a641d028dba50d53a5959e9cd9b96 /Makefile | |
parent | madvise MADV_NOCORE in image (diff) | |
download | torus-b9551af817e9a2ba90289d9c7de0e4a34f92287d.tar.gz torus-b9551af817e9a2ba90289d9c7de0e4a34f92287d.zip |
Compress PNG data in image
kcgi never enables compression for FastCGI.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 342e292..b1c43b1 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ CHROOT_GROUP = $(CHROOT_USER) CFLAGS += -std=c11 -Wall -Wextra -Wpedantic LDFLAGS = -static -LDLIBS = -lcursesw -lutil +LDLIBS = -lcursesw -lutil -lz -include config.mk |