aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog9
-rw-r--r--configure.ac2
-rw-r--r--matchbox-panel/Makefile.am2
3 files changed, 12 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a98c73e..05aa5ba 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2007-02-01 Ross Burton <ross@openedhand.com>
+
+ * configure.ac:
+ Use gmodule-export, as we export symbols.
+
+ * matchbox-panel/Makefile.am:
+ Add --export-dynamic as a Poky bug means gmodule-export doesn't
+ have it.
+
2007-01-31 Ross Burton <ross@openedhand.com>
* applets/showdesktop/showdesktop.c:
diff --git a/configure.ac b/configure.ac
index 5d900c2..c8d1766 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,7 +15,7 @@ AC_PROG_LIBTOOL
PKG_CHECK_MODULES(MATCHBOX_PANEL,
glib-2.0
gtk+-2.0 >= 2.6
- gmodule-2.0)
+ gmodule-export-2.0)
# startup-notification
AC_ARG_ENABLE(startup_notification,
diff --git a/matchbox-panel/Makefile.am b/matchbox-panel/Makefile.am
index 0284060..81e62c5 100644
--- a/matchbox-panel/Makefile.am
+++ b/matchbox-panel/Makefile.am
@@ -13,6 +13,8 @@ bin_PROGRAMS = matchbox-panel
matchbox_panel_SOURCES = mb-panel.c mb-panel-scaling-image.c
matchbox_panel_LDADD = $(MATCHBOX_PANEL_LIBS)
+# This is required as gmodule-export in Poky doesn't have it
+matchbox_panel_LDFLAGS = -Wl,--export-dynamic
CLEANFILES = $(BUILT_SOURCES)
DISTCLEANFILES = $(BUILT_SOURCES)