From 509d2ad3959630bb5f74aca37f54b2f56b554d29 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Thu, 3 Apr 2008 03:26:00 +0000 Subject: [PATCH] 2008-04-03 Emmanuele Bassi * clutter/Makefile.am: Only export symbols matching "^clutter.*", to avoid exposing the library-private symbols starting with an underscore. --- ChangeLog | 6 ++++++ clutter/Makefile.am | 1 + 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index c0dc53183..142a80261 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-04-03 Emmanuele Bassi + + * clutter/Makefile.am: Only export symbols matching "^clutter.*", + to avoid exposing the library-private symbols starting with + an underscore. + 2008-04-03 Emmanuele Bassi * clutter/clutter-alpha.c: ClutterAlpha is an InitiallyUnowned diff --git a/clutter/Makefile.am b/clutter/Makefile.am index 8a73cb613..d13ccbaf3 100644 --- a/clutter/Makefile.am +++ b/clutter/Makefile.am @@ -32,6 +32,7 @@ INCLUDES = \ LDADD = \ $(CLUTTER_LT_LDFLAGS) \ -export-dynamic \ + -export-symbols-regex "^clutter.*" \ -rpath $(libdir) \ $(NULL)