diff options
author | Jean-Yves Lefort <jylefort@FreeBSD.org> | 2005-06-25 14:15:32 +0000 |
---|---|---|
committer | Jean-Yves Lefort <jylefort@FreeBSD.org> | 2005-06-25 14:15:32 +0000 |
commit | e9a0a2d45baba78bbe6e97d6bfb0ce83981fd8af (patch) | |
tree | d56c9c09fb9e31b556dbcf161b9b39f4b5c8931f /sysutils/httplog/files/patch-configure | |
parent | update to 0.40 - still broken (compiles on 5, but overwrites files from (diff) |
- 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>
Notes
Notes:
svn path=/head/; revision=138013
Diffstat (limited to 'sysutils/httplog/files/patch-configure')
-rw-r--r-- | sysutils/httplog/files/patch-configure | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysutils/httplog/files/patch-configure b/sysutils/httplog/files/patch-configure index bfca4780ce4c..ee796d29288d 100644 --- a/sysutils/httplog/files/patch-configure +++ b/sysutils/httplog/files/patch-configure @@ -1,11 +1,11 @@ ---- configure.orig Tue Dec 16 10:40:16 2003 -+++ configure Tue Dec 16 10:41:45 2003 +--- 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 [ `./dummy` = "1.1.3" -o `./dummy` = "1.1.4" ]; then ++ if :; then use_zlib=yes LDFLAGS="$LDFLAGS -lz" echo "Checking zlib version: `./dummy` found." |