summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2001-07-21 08:40:14 +0200
committerRyan Bloom <rbb@apache.org>2001-07-21 08:40:14 +0200
commit024d1ff3e1e1bc4dcce2347df7995325ea8eb18e (patch)
treeb157ef8c40ddda013f75e7273031d027f3469cfd /build
parentImprove the exports generating awk script. In the past, we had (diff)
downloadapache2-024d1ff3e1e1bc4dcce2347df7995325ea8eb18e.tar.xz
apache2-024d1ff3e1e1bc4dcce2347df7995325ea8eb18e.zip
These two files aren't used anymore, so we can get rid of them now.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89648 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build')
-rw-r--r--build/buildexports.awk3
-rwxr-xr-xbuild/buildexports.sh34
2 files changed, 0 insertions, 37 deletions
diff --git a/build/buildexports.awk b/build/buildexports.awk
deleted file mode 100644
index 7856b46d34..0000000000
--- a/build/buildexports.awk
+++ /dev/null
@@ -1,3 +0,0 @@
-/^(APR?_|!?defined)/ { print "#if", $0 }
-/^\t*apr?_/ { print "const void *ap_hack_" $1 " = (const void *)" $1 ";" }
-/^\/(APR?_|!?defined)/ { print "#endif /*", substr($0,2), "*/" }
diff --git a/build/buildexports.sh b/build/buildexports.sh
deleted file mode 100755
index cbf87802d4..0000000000
--- a/build/buildexports.sh
+++ /dev/null
@@ -1,34 +0,0 @@
-#! /bin/sh
-
-if test -z "$1"; then
- echo "USAGE: $0 HTTPD-DIRECTORY"
- echo ""
- echo "for example: $0 .."
- exit 1
-fi
-
-echo "/* THIS FILE WAS AUTOGENERATED BY $0"
-echo " * This is an ugly hack that needs to be here, so that libtool will"
-echo " * link all of the APR functions into server regardless of whether"
-echo " * the base server uses them."
-echo " */"
-echo ""
-echo "#define CORE_PRIVATE"
-
-cur_dir="`pwd`"
-for dir in $1/srclib/apr/include $1/srclib/apr-util/include $1/include
-do
- cd $dir
- for file in *.h; do
- echo "#include \"$file\""
- done
- cd "$cur_dir"
-done
-
-echo ""
-echo "const void *ap_ugly_hack = NULL;"
-echo ""
-
-# convert export files (on STDIN) into a series of declarations
-my_dir="`dirname $0`"
-awk -f "$my_dir/buildexports.awk"