1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-24 09:25:01 +00:00
freebsd-ports/sysutils/httplog/files/patch-configure
Jean-Yves Lefort e9a0a2d45b - Allow the configure script to use any zlib version rather than
requiring 1.1.3 or 1.1.4 (the program requires zlib >= 1.1.3, which
  was imported in January 1999) [1]
- Refactor pkg-plist as PLIST_FILES/PORTDOCS
- Polish the Makefile

[1]:
PR:		ports/82524
Submitted by:	Andrew McNaughton <andrew@scoop.co.nz>
2005-06-25 14:15:32 +00:00

12 lines
325 B
Plaintext

--- configure.orig Sat Jun 25 15:53:38 2005
+++ configure Sat Jun 25 16:00:31 2005
@@ -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 :; then
use_zlib=yes
LDFLAGS="$LDFLAGS -lz"
echo "Checking zlib version: `./dummy` found."