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
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)
# 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
* MODULE-DEFINITION-START
* Name: auth_dbm_module
* ConfigStart
- . ./helpers/find-dbm-lib
+ . ./build/find-dbm-lib
* ConfigEnd
* MODULE-DEFINITION-END
*/
* 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
$(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 ..) > $@