diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2023-06-13 11:41:37 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2023-06-13 11:41:37 +0000 |
commit | eeab0fade1462dbbc6dd2a47c9bea03d2d20113d (patch) | |
tree | 33e2df4f292b4f113619e0e1bf5da120680a2b01 /regress/usr.sbin | |
parent | 65de46fa755a472aa873381c3486811353e64179 (diff) |
Link http regress test with -lz for content-encoding gzip support.
Noticed by anton@
Diffstat (limited to 'regress/usr.sbin')
-rw-r--r-- | regress/usr.sbin/rpki-client/libressl/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/regress/usr.sbin/rpki-client/libressl/Makefile b/regress/usr.sbin/rpki-client/libressl/Makefile index 89ef279838e..bf166cc66ab 100644 --- a/regress/usr.sbin/rpki-client/libressl/Makefile +++ b/regress/usr.sbin/rpki-client/libressl/Makefile @@ -1,10 +1,10 @@ -# $OpenBSD: Makefile,v 1.9 2023/04/18 19:41:50 bluhm Exp $ +# $OpenBSD: Makefile,v 1.10 2023/06/13 11:41:36 claudio Exp $ PROGS += test-http SRCS_test-http = test-http.c http.c io.c encoding.c -LDADD_test-http = -ltls -lssl -lcrypto -lutil -DPADD_test-http = ${LIBTLS} ${LIBSSL} ${LIBCRYPTO} ${LIBUTIL} +LDADD_test-http = -ltls -lssl -lcrypto -lutil -lz +DPADD_test-http = ${LIBTLS} ${LIBSSL} ${LIBCRYPTO} ${LIBUTIL} ${LIBZ} SERVER = jigsaw.w3.org .if ! (make(clean) || make(cleandir) || make(obj)) |