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 /src/Makefile.am | |
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 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index d068856..93de359 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -11,7 +11,7 @@ if NEED_COMPAT AM_CPPFLAGS += -I@top_srcdir@/compat endif -BUILT_SOURCES = symbols-scintilla.cpp symbols-scilexer.cpp +BUILT_SOURCES = EXTRA_DIST = gtk-info-popup.gob \ symbols-extract.tes |