aboutsummaryrefslogtreecommitdiffhomepage
path: root/configure.ac
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2013-07-09 17:18:22 +0200
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2013-07-09 17:18:22 +0200
commitde616e362ccd56aae8b26a08d9520ab9132a060f (patch)
tree278803432ffceec75f2a4d2845e5083d9dcb83cd /configure.ac
parent4091151b36f0fc5a977dbd8f4fbe3d6dd2210167 (diff)
downloadsciteco-de616e362ccd56aae8b26a08d9520ab9132a060f.tar.gz
fixed compilation of the GTK+ interface
* there was a compile-time race condition that could result in the GObjects not being built (with Gob2). So I removed the symbols generation from BUILT_SOURCES. * apparently either Scintilla depends on gmodule since I last tested or the gtk+-2.0 pkg-config package no longer includes gmodule, so we must explicitly depend on it
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 07044b1..491217b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -144,7 +144,7 @@ case $INTERFACE in
;;
gtk)
- PKG_CHECK_MODULES(LIBGTK, [gtk+-2.0], [
+ PKG_CHECK_MODULES(LIBGTK, [gtk+-2.0 gmodule-2.0], [
CFLAGS="$CFLAGS $LIBGTK_CFLAGS"
CXXFLAGS="$CXXFLAGS $LIBGTK_CFLAGS"
LIBS="$LIBS $LIBGTK_LIBS"