diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2011-03-22 01:49:53 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2011-03-22 01:49:53 +0000 |
commit | bf6ff0911c788b241b6504d94ae803dc8cc34191 (patch) | |
tree | 6077085bd5764a73a6289f709b778a964352cbb6 | |
parent | 920a34eb64cce0c22647d0c44fa96e8aca769539 (diff) |
modified linking enchant.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2867 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.in | 1 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2011-03-22 + + * configure.in: added the following line for newer gcc-4.5: + LIBS="$LIBS `$PKG_CONFIG --libs enchant`" + (thanks to Ricardo Mones) + 2011-03-16 * src/compose.c: changed keyboard shortcut of File/Send to prevent diff --git a/configure.in b/configure.in index f116204b..89ab97c5 100644 --- a/configure.in +++ b/configure.in @@ -290,6 +290,7 @@ 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) + LIBS="$LIBS `$PKG_CONFIG --libs enchant`" dnl Workaroud for zemberek crash if $PKG_CONFIG --atleast-version 1.4.2 enchant ; then |