blob: 081a02baa36b6e7cb2bd47f8e21e6c8850f6af71 [file] [log] [blame]
Brad Bishopc342db32019-05-15 21:57:59 -04001From ddd560024a6d526187fd126f306b59533ca3f7e2 Mon Sep 17 00:00:00 2001
2From: Paul Eggleton <paul.eggleton@linux.intel.com>
3Date: Tue, 17 Jul 2012 11:27:39 +0100
4Subject: [PATCH] apache2: do not export apr/apr-util symbols when using
5 shared libapr
6
7There is no need to "suck in" the apr/apr-util symbols when using
8a shared libapr{,util}, it just bloats the symbol table; so don't.
9
10Upstream-Status: Pending
11
12Note: EXPORT_DIRS change is conditional on using shared apr
13
14---
15 server/Makefile.in | 3 ---
16 1 file changed, 3 deletions(-)
17
18diff --git a/server/Makefile.in b/server/Makefile.in
19index 1fa3344..f635d76 100644
20--- a/server/Makefile.in
21+++ b/server/Makefile.in
22@@ -60,9 +60,6 @@ export_files:
23 ls $$dir/*.h ; \
24 done; \
25 echo "$(top_srcdir)/server/mpm_fdqueue.h"; \
26- for dir in $(EXPORT_DIRS_APR); do \
27- ls $$dir/ap[ru].h $$dir/ap[ru]_*.h 2>/dev/null; \
28- done; \
29 ) | sed -e s,//,/,g | sort -u > $@
30
31 exports.c: export_files
32--
332.7.4
34