diff options
author | James E. Housley <jeh@FreeBSD.org> | 2003-11-09 00:42:20 +0000 |
---|---|---|
committer | James E. Housley <jeh@FreeBSD.org> | 2003-11-09 00:42:20 +0000 |
commit | 6a57e829a110bdb9a898f8829c3f95479c641eab (patch) | |
tree | 0918cbad0f15db2753917750099fd7db49e72280 /www/apache13-ssl/files/patch-src::modules::standard::mod_auth_db.module | |
parent | Add OpenOffice.org 1.1 for Finnish language (diff) |
Changelog:
- Sync with apache13 layout (and some patches)
- use DOCSDIR
- Add no_zombies.patch
- use DIST_SUBDIR=apache
Removed files:
- files/patch-aq
- files/patch-ar
Added files:
- files/patch-httpd.conf-dist
- files/post-patch-conf:httpd.conf-dist.orig
- files/patch-FixPatch
- files/patch-SSLpatch
- files/patch-Makefile.tmpl
- files/patch-src::modules::standard::mod_auth_db.module
- files/patch-src::support::dbmanage
- files/patch-src::support::log_server_status
- files/patch-configure
PR: 58403
Submitted By: MAINTAINER
Notes
Notes:
svn path=/head/; revision=93474
Diffstat (limited to 'www/apache13-ssl/files/patch-src::modules::standard::mod_auth_db.module')
-rw-r--r-- | www/apache13-ssl/files/patch-src::modules::standard::mod_auth_db.module | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/www/apache13-ssl/files/patch-src::modules::standard::mod_auth_db.module b/www/apache13-ssl/files/patch-src::modules::standard::mod_auth_db.module new file mode 100644 index 000000000000..f4f02e80cbc2 --- /dev/null +++ b/www/apache13-ssl/files/patch-src::modules::standard::mod_auth_db.module @@ -0,0 +1,31 @@ +--- src/modules/standard/mod_auth_db.module.bak Tue Oct 16 13:12:02 2001 ++++ src/modules/standard/mod_auth_db.module Thu Feb 20 12:55:19 2003 +@@ -4,23 +4,23 @@ + DB_LIB='' + if ./helpers/TestCompile func db_create; then + DB_VERSION='Berkeley-DB/3.x' +- elif ./helpers/TestCompile lib db db_create; then ++ elif ./helpers/TestCompile lib dbXXX db_create; then + DB_VERSION='Berkeley-DB/3.x' + DB_LIB='-ldb' + elif ./helpers/TestCompile func db_open; then + DB_VERSION='Berkeley-DB/2.x' +- elif ./helpers/TestCompile lib db db_open; then ++ elif ./helpers/TestCompile lib dbXXX db_open; then + DB_VERSION='Berkeley-DB/2.x' + DB_LIB='-ldb' +- elif ./helpers/TestCompile lib db2 db_open; then ++ elif ./helpers/TestCompile lib db2XXX db_open; then + DB_VERSION='Berkeley-DB/2.x' + DB_LIB='-ldb2' + elif ./helpers/TestCompile func dbopen; then + DB_VERSION='Berkeley-DB/1.x' +- elif ./helpers/TestCompile lib db dbopen; then ++ elif ./helpers/TestCompile lib dbXXX dbopen; then + DB_VERSION='Berkeley-DB/1.x' + DB_LIB='-ldb' +- elif ./helpers/TestCompile lib db1 dbopen; then ++ elif ./helpers/TestCompile lib db1XXX dbopen; then + DB_VERSION='Berkeley-DB/1.x' + DB_LIB='-ldb1' + elif TCADDINCL='#include <db.h>' INCLUDES1="$INCLUDES1 -I/usr/include/db1" TLIB="-ldb1" \ |