diff options
author | Yaroslav Tykhiy <ytykhiy@gmail.com> | 2002-12-13 23:09:44 +0000 |
---|---|---|
committer | Yaroslav Tykhiy <ytykhiy@gmail.com> | 2002-12-13 23:09:44 +0000 |
commit | 544ef85d7ed3457654882d059a889534b9cad310 (patch) | |
tree | 1e6454cc47e740bef11ca8303e09df52d3c6c884 /www/oops/files/patch-configure.in | |
parent | Fix maintainers email address, this time for real (sorry, too many (diff) |
a) Update www/oops to 1.5.22-20021204, which solves
a number of build problems.
b) Obey BATCH.
c) Locate DB4 correctly.
d) Explicitly specify dependency on gawk.
PR: ports/46006 ports/44071 ports/45989 ports/40593
Submitted by: Sergey A. Osokin <osa@FreeBSD.org.ru>
Approved by: portmgr (knu)
Notes
Notes:
svn path=/head/; revision=71616
Diffstat (limited to 'www/oops/files/patch-configure.in')
-rw-r--r-- | www/oops/files/patch-configure.in | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/www/oops/files/patch-configure.in b/www/oops/files/patch-configure.in index 67bcfa3dc30c..0170d7974b64 100644 --- a/www/oops/files/patch-configure.in +++ b/www/oops/files/patch-configure.in @@ -1,8 +1,5 @@ - -$FreeBSD$ - ---- configure.in.orig Wed Dec 19 13:18:40 2001 -+++ configure.in Thu Jul 25 19:54:48 2002 +--- configure.in.orig Wed Dec 19 15:18:40 2001 ++++ configure.in Sat Oct 5 18:27:46 2002 @@ -49,7 +49,7 @@ AC_ARG_WITH(zlib,--with-zlib=[[PATH]] Which zlib library/object file to use, with_zlib="$withval", with_zlib="") @@ -12,7 +9,17 @@ $FreeBSD$ AC_CHECK_HEADERS(netinet/ip_fil.h, AC_DEFINE(HAVE_IPF)) AC_CHECK_HEADERS(netinet/ip6.h, AC_DEFINE(HAVE_IP6_H)) -@@ -524,10 +524,10 @@ +@@ -66,6 +66,9 @@ + LIBDB_PATH="/usr/local/BerkeleyDB.3.0" + elif test -r "$pwd/libdb.a"; then + LIBDB_PATH="$pwd" ++elif test -r "/usr/local/lib/libdb4.a"; then ++ LIBDB_PATH="/usr/local" ++ LIBDB_NAME=-ldb4 + elif test -r "/usr/local/lib/libdb.a"; then + LIBDB_PATH="/usr/local" + elif test -r "/usr/lib/libdb2.a"; then +@@ -524,10 +527,10 @@ esac if test "X$MYSQL_PATH" != "X" ; then |