aboutsummaryrefslogtreecommitdiff
path: root/sysutils/httplog
diff options
context:
space:
mode:
authorMichael Haro <mharo@FreeBSD.org>2003-12-16 23:26:21 +0000
committerMichael Haro <mharo@FreeBSD.org>2003-12-16 23:26:21 +0000
commite9eb69fa44765b173c5e38c1917cfc8785df1511 (patch)
tree55ce7a2570e3be19c23de5eb85a3e4e61779e753 /sysutils/httplog
parent22227684382c3d2b841a7c582f3a864d9926d4d3 (diff)
downloadports-e9eb69fa44765b173c5e38c1917cfc8785df1511.tar.gz
ports-e9eb69fa44765b173c5e38c1917cfc8785df1511.zip
allow configure to recognize libz version 1.1.4
Notes
Notes: svn path=/head/; revision=95982
Diffstat (limited to 'sysutils/httplog')
-rw-r--r--sysutils/httplog/files/patch-configure11
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."