diff options
author | mharo <mharo@FreeBSD.org> | 2003-12-17 07:26:21 +0800 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 2003-12-17 07:26:21 +0800 |
commit | 310974599903ee3836dcb01784f398e96c338109 (patch) | |
tree | 4775f235b759719e2e93f08106df8f07212a5285 /sysutils/httplog | |
parent | 36ed9a861fd5c88a355f08acadd60576a3b9564a (diff) | |
download | freebsd-ports-gnome-310974599903ee3836dcb01784f398e96c338109.tar.gz freebsd-ports-gnome-310974599903ee3836dcb01784f398e96c338109.tar.zst freebsd-ports-gnome-310974599903ee3836dcb01784f398e96c338109.zip |
allow configure to recognize libz version 1.1.4
Diffstat (limited to 'sysutils/httplog')
-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 000000000000..bfca4780ce4c --- /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." |