diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-07-09 17:18:22 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-07-09 17:18:22 +0200 |
commit | de616e362ccd56aae8b26a08d9520ab9132a060f (patch) | |
tree | 278803432ffceec75f2a4d2845e5083d9dcb83cd /configure.ac | |
parent | 4091151b36f0fc5a977dbd8f4fbe3d6dd2210167 (diff) | |
download | sciteco-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.ac | 2 |
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" |