summaryrefslogtreecommitdiff
path: root/Makefile.am.inc
diff options
context:
space:
mode:
authorBalint Reczey <balint.reczey@ericsson.com>2010-12-16 16:42:34 +0000
committerBalint Reczey <balint.reczey@ericsson.com>2010-12-16 16:42:34 +0000
commit7f690fd0864e22d2907a0581bcdb382b47e8d97b (patch)
tree316ee3c9771892f73f9dbc15c4b148cdec014cb4 /Makefile.am.inc
parent84aebe5af7dd2a40ef84af3375cd2ec0b169ef6c (diff)
downloadwireshark-7f690fd0864e22d2907a0581bcdb382b47e8d97b.tar.gz
Export only defined symbols from libwsutil.
Exported symbols are the symbols listed in libwsutil.def, but the symbols defined in not used optional objects are filtered out. svn path=/trunk/; revision=35202
Diffstat (limited to 'Makefile.am.inc')
-rw-r--r--Makefile.am.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am.inc b/Makefile.am.inc
index 7af01b3161..91ea02631a 100644
--- a/Makefile.am.inc
+++ b/Makefile.am.inc
@@ -25,4 +25,4 @@
$(RUNLEX) "$(LEX)" -o$@ $<
.def.sym:
- $(AWK) '/^EXPORTS$$/ {next;}; /^[^;]/ { print $$1;}' < $< > $@
+ $(AWK) '/^EXPORTS$$/ {next;}; ${def_sym_filter_symbols} /^[^;]/ { print $$1;}' < $< > $@