blob: adb728ba31657bd61106df56277055c5276d4f75 [file] [log] [blame]
Andrew Geissler9aee5002022-03-30 16:27:02 +00001From 9c03ed909b8da0e1a288f53fda535a3f15bcf791 Mon Sep 17 00:00:00 2001
Brad Bishopc342db32019-05-15 21:57:59 -04002From: Paul Eggleton <paul.eggleton@linux.intel.com>
3Date: Tue, 17 Jul 2012 11:27:39 +0100
Andrew Geissler9aee5002022-03-30 16:27:02 +00004Subject: [PATCH] apache2: do not export apr/apr-util symbols when using shared
5 libapr
Brad Bishopc342db32019-05-15 21:57:59 -04006
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
Brad Bishopc342db32019-05-15 21:57:59 -040013---
14 server/Makefile.in | 3 ---
15 1 file changed, 3 deletions(-)
16
17diff --git a/server/Makefile.in b/server/Makefile.in
Andrew Geissler9aee5002022-03-30 16:27:02 +000018index 8111877..8c0c396 100644
Brad Bishopc342db32019-05-15 21:57:59 -040019--- a/server/Makefile.in
20+++ b/server/Makefile.in
21@@ -60,9 +60,6 @@ export_files:
22 ls $$dir/*.h ; \
23 done; \
24 echo "$(top_srcdir)/server/mpm_fdqueue.h"; \
25- for dir in $(EXPORT_DIRS_APR); do \
26- ls $$dir/ap[ru].h $$dir/ap[ru]_*.h 2>/dev/null; \
27- done; \
28 ) | sed -e s,//,/,g | sort -u > $@
29
30 exports.c: export_files
31--
Andrew Geissler9aee5002022-03-30 16:27:02 +0000322.25.1
Brad Bishopc342db32019-05-15 21:57:59 -040033