summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorPetr Mladek <pmladek@suse.cz>2012-06-20 15:26:46 +0200
committerPetr Mladek <pmladek@suse.cz>2012-06-25 12:05:14 +0200
commit4a38cb3bfc1a30d37cbb3ae51989cf747e54eb66 (patch)
tree0923f533da266aa875dd8c686fe0db633f1b487a /configure.in
parent0828ea8d03d19808acca6ace4dd2860bc8bf3fb9 (diff)
explicitely check gmodule build flags for gtk3 module
g_module_open is used in gtk3gtksys.cxx gmodule dependencies were moved into private requires in rencent gio-2.0.pc. It was because GIO users are not generally expected to use gmodule API, see http://git.gnome.org/browse/glib/commit/?id=1f02ef3205e810dd937f316f5a7b58ecc2893d59 Change-Id: I90e980678eaaa825ae130f54d13f4a5772a2700a
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 9cf0baa1d75d..42d8c248e2c1 100644
--- a/configure.in
+++ b/configure.in
@@ -8725,7 +8725,7 @@ if test "x$enable_gtk3" = "xyes"; then
if test "$with_system_cairo" != yes; then
echo "System cairo required for gtk3 support, please use --with-system-cairo"
fi
- PKG_CHECK_MODULES(GTK3, gtk+-3.0 >= 3.2 gtk+-unix-print-3.0 cairo, ENABLE_GTK3="TRUE", ENABLE_GTK3="")
+ PKG_CHECK_MODULES(GTK3, gtk+-3.0 >= 3.2 gtk+-unix-print-3.0 gmodule-no-export-2.0 cairo, ENABLE_GTK3="TRUE", ENABLE_GTK3="")
if test "x$ENABLE_GTK3" = "xTRUE"; then
R="gtk3"
else