summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReuben Thomas <rrt@sc3d.org>2017-01-29 18:00:34 +0000
committerGitHub <noreply@github.com>2017-01-29 18:00:34 +0000
commit3ef9a957dd62a4411265dd8f27ed93fc6cec985f (patch)
tree3959cde2541ba99f4e32133ca63f722dc232eab8
parentec864e7d300946d00493cb0a95fef0ae62bc926e (diff)
parent4052ce3c5caf4725da4f07b933c2bff2a41eeea2 (diff)
downloadenchant-3ef9a957dd62a4411265dd8f27ed93fc6cec985f.tar.gz
Merge pull request #57 from TingPing/public-symbols
Only export enchant_ symbols
-rw-r--r--src/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 4d79e73..5bfaf56 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -6,7 +6,7 @@ lib_LTLIBRARIES = libenchant.la
libenchant_la_LIBADD= $(ENCHANT_LIBS) @ENCHANT_WIN32_RESOURCE@
-libenchant_la_LDFLAGS = -no-undefined -export-dynamic
+libenchant_la_LDFLAGS = -no-undefined -export-symbols-regex '^enchant_.*'
if OS_WIN32
libenchant_la_LDFLAGS += -avoid-version
else