12345678910111213141516171819202122232425262728293031323334353637383940 |
- configure.ac | 4 ++--
- libempathy-gtk/empathy-spell.c | 2 +-
- 2 files changed, 3 insertions(+), 3 deletions(-)
- diff --git c/configure.ac i/configure.ac
- index 7aeb6b31c..31e5b847b 100644
- --- c/configure.ac
- +++ i/configure.ac
- @@ -72,7 +72,7 @@ WEBKIT_REQUIRED=2.10.0
- GOA_REQUIRED=3.5.1
-
- # Optional deps
- -ENCHANT_REQUIRED=1.2.0
- +ENCHANT_REQUIRED=2.2.0
- GEOCLUE_REQUIRED=2.1.0
- GEOCODE_GLIB_REQUIRED=0.99.1
- ISO_CODES_REQUIRED=0.35
- @@ -307,7 +307,7 @@ AC_ARG_ENABLE(spell,
- if test "x$enable_spell" != "xno"; then
- PKG_CHECK_MODULES(ENCHANT,
- [
- - enchant >= $ENCHANT_REQUIRED,
- + enchant-2 >= $ENCHANT_REQUIRED,
- iso-codes >= $ISO_CODES_REQUIRED
- ], have_enchant="yes", have_enchant="no")
-
- diff --git c/libempathy-gtk/empathy-spell.c i/libempathy-gtk/empathy-spell.c
- index 27f27f902..bb0159fd8 100644
- --- c/libempathy-gtk/empathy-spell.c
- +++ i/libempathy-gtk/empathy-spell.c
- @@ -424,7 +424,7 @@ empathy_spell_add_to_dictionary (const gchar *code,
- if (lang == NULL)
- return;
-
- - enchant_dict_add_to_pwl (lang->speller, word, strlen (word));
- + enchant_dict_add (lang->speller, word, strlen (word));
- }
-
- #else /* not HAVE_ENCHANT */
|