2004-09-09 06:16:56 +00:00
|
|
|
|
|
|
|
There is no need to "suck in" the apr/apr-util symbols when using
|
|
|
|
a shared libapr{,util}, it just bloats the symbol table; so don't.
|
|
|
|
|
2004-10-13 16:35:07 +00:00
|
|
|
Upstream-HEAD: needed
|
2004-10-13 10:44:51 +00:00
|
|
|
Upstream-2.0: omit
|
|
|
|
Upstream-Status: EXPORT_DIRS change is conditional on using shared apr
|
|
|
|
|
2006-05-03 14:14:28 +00:00
|
|
|
--- httpd-2.2.2/server/Makefile.in.export
|
|
|
|
+++ httpd-2.2.2/server/Makefile.in
|
|
|
|
@@ -58,9 +58,6 @@
|
2005-02-09 09:02:54 +00:00
|
|
|
for dir in $(EXPORT_DIRS); do \
|
|
|
|
ls $$dir/*.h >> $$tmp; \
|
|
|
|
done; \
|
|
|
|
- for dir in $(EXPORT_DIRS_APR); do \
|
2006-05-03 14:14:28 +00:00
|
|
|
- (ls $$dir/ap[ru].h $$dir/ap[ru]_*.h >> $$tmp 2>/dev/null); \
|
2005-02-09 09:02:54 +00:00
|
|
|
- done; \
|
|
|
|
sort -u $$tmp > $@; \
|
|
|
|
rm -f $$tmp
|
2004-09-09 06:16:56 +00:00
|
|
|
|