aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--configure.in6
2 files changed, 14 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 513f369b..7068d46f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
2010-01-12
+ * version 3.0.0beta5
+
+2010-01-12
+
+ * configure.in: added workaround for crash by enchant with zemberek.
+
+2010-01-12
+
* configure.in: added AM_SILENT_RULES (requires automake 1.11)
(thanks to Antonio Ospite).
diff --git a/configure.in b/configure.in
index 81c9526d..b7ce58ca 100644
--- a/configure.in
+++ b/configure.in
@@ -286,6 +286,12 @@ if test "$ac_cv_enable_gtkspell" = yes; then
LIBS="$LIBS `$PKG_CONFIG --libs gtkspell-2.0`"
if $PKG_CONFIG --atleast-version 2.0.13 gtkspell-2.0 ; then
AC_DEFINE(USE_ENCHANT, 1, Use Enchant with GtkSpell)
+
+ dnl Workaroud for zemberek crash
+ if $PKG_CONFIG --atleast-version 1.4.2 enchant ; then
+ CFLAGS="$CFLAGS `$PKG_CONFIG --cflags dbus-glib-1`"
+ LIBS="$LIBS `$PKG_CONFIG --libs dbus-glib-1`"
+ fi
elif $PKG_CONFIG --atleast-version 2.0.12 gtkspell-2.0 ; then
LIBS="$LIBS -laspell"
fi