Skip to content

Commit 2fe5105

Browse files
committed
configure: actually use pkg-config to check for zlib
Fixes: #642
1 parent 472c132 commit 2fe5105

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ echo "STATIC_LIBS += $(pkg-config --libs --static libssl)" \
693693
# zlib is required.
694694
#
695695
printf "Checking for zlib via pkg-config ... "
696-
if false pkg-config --exists 'zlib'; then
696+
if pkg-config --exists 'zlib'; then
697697
echo "found zlib version $(pkg-config --modversion zlib)."
698698
echo "CFLAGS += $(pkg-config --cflags zlib)" >>$CONFIG_MK
699699
echo "LDFLAGS += $(pkg-config --libs zlib)" >>$CONFIG_MK

0 commit comments

Comments
 (0)