diff options
author | mharo <mharo@FreeBSD.org> | 2003-12-16 23:26:21 +0000 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 2003-12-16 23:26:21 +0000 |
commit | 310974599903ee3836dcb01784f398e96c338109 (patch) | |
tree | 4775f235b759719e2e93f08106df8f07212a5285 /sysutils | |
parent | 36ed9a861fd5c88a355f08acadd60576a3b9564a (diff) | |
download | FreeBSD-ports-310974599903ee3836dcb01784f398e96c338109.zip FreeBSD-ports-310974599903ee3836dcb01784f398e96c338109.tar.gz |
allow configure to recognize libz version 1.1.4
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/httplog/files/patch-configure | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sysutils/httplog/files/patch-configure b/sysutils/httplog/files/patch-configure new file mode 100644 index 0000000..bfca478 --- /dev/null +++ b/sysutils/httplog/files/patch-configure @@ -0,0 +1,11 @@ +--- configure.orig Tue Dec 16 10:40:16 2003 ++++ configure Tue Dec 16 10:41:45 2003 +@@ -140,7 +140,7 @@ + EOF + $CC -o ./dummy ./dummy.c -lz 1>/dev/null 2>&1 + if [ $? -eq 0 ]; then +- if [ `./dummy` = "1.1.3" ]; then ++ if [ `./dummy` = "1.1.3" -o `./dummy` = "1.1.4" ]; then + use_zlib=yes + LDFLAGS="$LDFLAGS -lz" + echo "Checking zlib version: `./dummy` found." |