- Download bz2'd tarball [1] - Add print-closest-mirrors target. It allows you to find the 6 (3 http/3 ftp) closest mirror, base on http://www.apache.org/dyn/closer.cgi/httpd/ make print-closest-mirrors >> /etc/make.conf automatically add the six closest mirror to the head of ${MASTER_SITE_APACHE_HTTPD}. Requested by: delphij
80 lines
1.6 KiB
Text
80 lines
1.6 KiB
Text
--- srclib/apr-util/build/dbm.m4.orig Sun Jan 16 18:27:07 2005
|
|
+++ srclib/apr-util/build/dbm.m4 Sat Feb 5 12:14:28 2005
|
|
@@ -298,8 +298,8 @@
|
|
fi
|
|
APU_CHECK_BERKELEY_DB(1, -1, -1,
|
|
"$places",
|
|
- "db_185.h",
|
|
- "db"
|
|
+ "db.h",
|
|
+ "c"
|
|
)
|
|
if test "$apu_have_db" = "1"; then
|
|
apu_db_version=185
|
|
@@ -341,7 +341,7 @@
|
|
APU_CHECK_BERKELEY_DB(3, -1, -1,
|
|
"$places",
|
|
"db3/db.h db.h",
|
|
- "db3 db"
|
|
+ "db3"
|
|
)
|
|
if test "$apu_have_db" = "1"; then
|
|
apu_db_version=3
|
|
@@ -361,8 +361,8 @@
|
|
fi
|
|
APU_CHECK_BERKELEY_DB("4", "0", "-1",
|
|
"$places",
|
|
- "db4/db.h db.h",
|
|
- "db-4.0 db4 db"
|
|
+ "db4/db.h",
|
|
+ "db4"
|
|
)
|
|
if test "$apu_have_db" = "1"; then
|
|
apu_db_version=4
|
|
@@ -382,8 +382,8 @@
|
|
fi
|
|
APU_CHECK_BERKELEY_DB("4", "1", "-1",
|
|
"$places",
|
|
- "db41/db.h db4/db.h db.h",
|
|
- "db-4.1 db4 db"
|
|
+ "db41/db.h",
|
|
+ "db41"
|
|
)
|
|
if test "$apu_have_db" = "1"; then
|
|
apu_db_version=4
|
|
@@ -403,13 +403,14 @@
|
|
fi
|
|
APU_CHECK_BERKELEY_DB("4", "2", "-1",
|
|
"$places",
|
|
- "db42/db.h db4/db.h db.h",
|
|
- "db-4.2 db4 db"
|
|
+ "db42/db.h",
|
|
+ "db-4.2"
|
|
)
|
|
if test "$apu_have_db" = "1"; then
|
|
apu_db_version=4
|
|
fi
|
|
])
|
|
+
|
|
dnl
|
|
dnl APU_CHECK_DB43: is DB4.3 present?
|
|
dnl
|
|
@@ -422,8 +423,8 @@
|
|
fi
|
|
APU_CHECK_BERKELEY_DB("4", "3", "-1",
|
|
"$places",
|
|
- "db43/db.h db4/db.h db.h",
|
|
- "db-4.3 db43 db4 db"
|
|
+ "db43/db.h",
|
|
+ "db-4.3"
|
|
)
|
|
if test "$apu_have_db" = "1"; then
|
|
apu_db_version=4
|
|
@@ -524,6 +525,7 @@
|
|
fi
|
|
fi
|
|
fi
|
|
+
|
|
AC_MSG_CHECKING(for Berkeley DB)
|
|
if test "$apu_have_db" = "1"; then
|
|
AC_MSG_RESULT(found db$apu_db_version)
|