diff options
author | Colin Walters <walters@verbum.org> | 2010-11-09 15:15:00 -0500 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2010-11-09 17:07:26 -0500 |
commit | 84608743897ef60071757c09216f60f8861f504e (patch) | |
tree | 4cf0633baf554e6b2c139059e639aa6851659c4a /Makefile-girepository.am | |
parent | 57488c5e52b8f51a032c61860a9bb75526c015bc (diff) | |
download | gobject-introspection-84608743897ef60071757c09216f60f8861f504e.tar.gz |
girepository: Only export ^gi?_ symbols
Otherwise it's really easy to unintentionally export unwanted symbols,
as would happen with the upcoming CMPH import.
Diffstat (limited to 'Makefile-girepository.am')
-rw-r--r-- | Makefile-girepository.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile-girepository.am b/Makefile-girepository.am index fd9a51fe..35123f5c 100644 --- a/Makefile-girepository.am +++ b/Makefile-girepository.am @@ -55,7 +55,7 @@ libgirepository_1_0_la_SOURCES = \ libgirepository_1_0_la_CPPFLAGS = $(GIREPO_CFLAGS) -I$(top_srcdir)/girepository -DG_IREPOSITORY_COMPILATION libgirepository_1_0_la_LIBADD = $(GIREPO_LIBS) -libgirepository_1_0_la_LDFLAGS = -no-undefined -version-number 1:0:0 +libgirepository_1_0_la_LDFLAGS = -no-undefined -version-number 1:0:0 -export-symbols-regex '^gi?_' libgirepository_parser_la_SOURCES = \ girepository/girmodule.c \ |