diff options
author | Greg Stein <gstein@apache.org> | 2000-12-07 12:37:08 +0100 |
---|---|---|
committer | Greg Stein <gstein@apache.org> | 2000-12-07 12:37:08 +0100 |
commit | b5de155f2a715a72d58a5fee06df5f840a09b858 (patch) | |
tree | 171d732534ad0784880b547457651e44843f4fdc /server/Makefile.in | |
parent | *) simplify the AWK script a bit (diff) | |
download | apache2-b5de155f2a715a72d58a5fee06df5f840a09b858.tar.xz apache2-b5de155f2a715a72d58a5fee06df5f840a09b858.zip |
*) fix up buildexports.sh:
- enable it to be run from any dir by passing a parameter for the
location of srclib, and using its own location for determining where
the AWK script is located
- accept exports files on STDIN, and produce output on STDOUT
- use "pwd" and cd back to it, rather than assuming ../../.. (which might
not apply if we feed it other export files)
- add USAGE reporting
*) generate exports.c during normal build of "server" rather than during the
buildconf stage. update invocation to match above changes
*) revamp the ap_ugly_hack referencing in main.c: put it at the bottom of
the file with the other, similar references, and style it similarly.
*) remove the ap_ugly_hack declaration from http_main.h; it is internal to
the "server" code
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87249 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/Makefile.in')
-rw-r--r-- | server/Makefile.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/server/Makefile.in b/server/Makefile.in index e1fa986ac1..77cda7dc3e 100644 --- a/server/Makefile.in +++ b/server/Makefile.in @@ -30,3 +30,8 @@ test_char.h: gen_test_char util_uri.lo: uri_delims.h util.lo: test_char.h + +EXPORT_FILES = ../srclib/apr/apr.exports ../srclib/apr-util/aprutil.exports + +exports.c: $(EXPORT_FILES) + (cat $(EXPORT_FILES) | ../build/buildexports.sh ../srclib) > $@ |