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 14:10:08 +0200
commitdf3c7d6ddf633f8511cbd72a536c58a5006ca31e (patch)
treece15dc35ab677ac49dff9153f3a852243605e09a /configure.in
parent418df9282d772d21eebb56f858fd84036d9b691a (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 b10ad8d3304a..e282af34313c 100644
--- a/configure.in
+++ b/configure.in
@@ -8799,7 +8799,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