Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 35506 invoked by uid 500); 18 Feb 2001 16:07:32 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 35495 invoked by uid 500); 18 Feb 2001 16:07:32 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 18 Feb 2001 16:07:32 -0000 Message-ID: <20010218160732.35491.qmail@apache.org> From: fielding@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/server Makefile.in fielding 01/02/18 08:07:32 Modified: . Makefile.in configure.in modules/aaa mod_auth_db.module mod_auth_dbm.c modules/mappers mod_rewrite.c server Makefile.in Log: Intermediate change of hardcoded "helpers" reference to "build" until I get a chance to revamp this to use APR's variables directly. Revision Changes Path 1.57 +1 -1 httpd-2.0/Makefile.in Index: Makefile.in =================================================================== RCS file: /home/cvs/httpd-2.0/Makefile.in,v retrieving revision 1.56 retrieving revision 1.57 diff -u -r1.56 -r1.57 --- Makefile.in 2001/02/07 19:07:46 1.56 +++ Makefile.in 2001/02/18 16:07:30 1.57 @@ -49,7 +49,7 @@ docs:: mkdir -p ./docs/api - srclib/apr/helpers/scandoc -isrclib/apr/helpers/default.pl -p./docs/api/ ./include/*.h + srclib/apr/build/scandoc -isrclib/apr/build/default.pl -p./docs/api/ ./include/*.h install-htdocs: @echo Installing HTML documents 1.123 +1 -1 httpd-2.0/configure.in Index: configure.in =================================================================== RCS file: /home/cvs/httpd-2.0/configure.in,v retrieving revision 1.122 retrieving revision 1.123 diff -u -r1.122 -r1.123 --- configure.in 2001/02/17 23:58:30 1.122 +++ configure.in 2001/02/18 16:07:31 1.123 @@ -21,7 +21,7 @@ abs_srcdir=`(cd $srcdir && pwd)` abs_builddir=`pwd` -MKDIR=$abs_srcdir/srclib/apr/helpers/mkdir.sh +MKDIR=$abs_srcdir/srclib/apr/build/mkdir.sh APACHE_CONFIG_NICE(config.nice) 1.3 +4 -4 httpd-2.0/modules/aaa/mod_auth_db.module Index: mod_auth_db.module =================================================================== RCS file: /home/cvs/httpd-2.0/modules/aaa/mod_auth_db.module,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- mod_auth_db.module 2000/03/12 19:50:56 1.2 +++ mod_auth_db.module 2001/02/18 16:07:31 1.3 @@ -3,17 +3,17 @@ # XXX: this needs updating for apache-2.0 configuration method DB_VERSION='' DB_LIB='' - if ./helpers/TestCompile func db_open; then + if ./build/TestCompile func db_open; then DB_VERSION='Berkeley-DB/2.x' else - if ./helpers/TestCompile lib db db_open; then + if ./build/TestCompile lib db db_open; then DB_VERSION='Berkeley-DB/2.x' DB_LIB='-ldb' else - if ./helpers/TestCompile func dbopen; then + if ./build/TestCompile func dbopen; then DB_VERSION='Berkeley-DB/1.x' else - if ./helpers/TestCompile lib db dbopen; then + if ./build/TestCompile lib db dbopen; then DB_VERSION='Berkeley-DB/1.x' DB_LIB='-ldb' fi 1.32 +1 -1 httpd-2.0/modules/aaa/mod_auth_dbm.c Index: mod_auth_dbm.c =================================================================== RCS file: /home/cvs/httpd-2.0/modules/aaa/mod_auth_dbm.c,v retrieving revision 1.31 retrieving revision 1.32 diff -u -r1.31 -r1.32 --- mod_auth_dbm.c 2001/02/18 02:07:26 1.31 +++ mod_auth_dbm.c 2001/02/18 16:07:31 1.32 @@ -106,7 +106,7 @@ * MODULE-DEFINITION-START * Name: auth_dbm_module * ConfigStart - . ./helpers/find-dbm-lib + . ./build/find-dbm-lib * ConfigEnd * MODULE-DEFINITION-END */ 1.73 +1 -1 httpd-2.0/modules/mappers/mod_rewrite.c Index: mod_rewrite.c =================================================================== RCS file: /home/cvs/httpd-2.0/modules/mappers/mod_rewrite.c,v retrieving revision 1.72 retrieving revision 1.73 diff -u -r1.72 -r1.73 --- mod_rewrite.c 2001/02/18 02:58:52 1.72 +++ mod_rewrite.c 2001/02/18 16:07:31 1.73 @@ -164,7 +164,7 @@ * MODULE-DEFINITION-START * Name: rewrite_module * ConfigStart - . ./helpers/find-dbm-lib + . ./build/find-dbm-lib if [ "x$found_dbm" = "x1" ]; then echo " enabling DBM support for mod_rewrite" else 1.34 +1 -1 httpd-2.0/server/Makefile.in Index: Makefile.in =================================================================== RCS file: /home/cvs/httpd-2.0/server/Makefile.in,v retrieving revision 1.33 retrieving revision 1.34 diff -u -r1.33 -r1.34 --- Makefile.in 2001/02/17 16:10:54 1.33 +++ Makefile.in 2001/02/18 16:07:31 1.34 @@ -51,7 +51,7 @@ $(TARGET_EXPORTS): - $(AWK) -f $(top_srcdir)/srclib/apr/helpers/make_export.awk $(top_srcdir)/include/*.h > $@ + $(AWK) -f $(top_srcdir)/srclib/apr/build/make_export.awk $(top_srcdir)/include/*.h > $@ exports.c: $(EXPORT_FILES) (cat $(EXPORT_FILES) | ../build/buildexports.sh ..) > $@