Commit f48f0c07 authored by Roy T. Fielding's avatar Roy T. Fielding
Browse files

Intermediate change of hardcoded "helpers" reference to "build"

until I get a chance to revamp this to use APR's variables directly.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88230 13f79535-47bb-0310-9956-ffa450edef68
parent bb608e4e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ htdocs-srcdir = docs/docroot

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 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ dnl Absolute source/build directory
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)

+4 −4
Original line number Diff line number Diff line
@@ -3,17 +3,17 @@ ConfigStart
	# 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 −1
Original line number Diff line number Diff line
@@ -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 −1
Original line number Diff line number Diff line
@@ -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
Loading