httpd-2.0.45-export.patch 573 B

123456789101112131415161718192021
  1. There is no need to "suck in" the apr/apr-util symbols when using
  2. a shared libapr{,util}, it just bloats the symbol table; so don't.
  3. Upstream-HEAD: needed
  4. Upstream-2.0: omit
  5. Upstream-Status: EXPORT_DIRS change is conditional on using shared apr
  6. --- httpd-2.2.2/server/Makefile.in.export
  7. +++ httpd-2.2.2/server/Makefile.in
  8. @@ -58,9 +58,6 @@
  9. for dir in $(EXPORT_DIRS); do \
  10. ls $$dir/*.h >> $$tmp; \
  11. done; \
  12. - for dir in $(EXPORT_DIRS_APR); do \
  13. - (ls $$dir/ap[ru].h $$dir/ap[ru]_*.h >> $$tmp 2>/dev/null); \
  14. - done; \
  15. sort -u $$tmp > $@; \
  16. rm -f $$tmp