diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2006-06-18 Christian Persch <chpe@cvs.gnome.org> + * configure.ac: + + Fix wrong test, bug #344848. + +2006-06-18 Christian Persch <chpe@cvs.gnome.org> + * configure.ac: * data/default-prefs-common.js: * embed/Makefile.am: diff --git a/configure.ac b/configure.ac index b45dc5815..2e9913adb 100644 --- a/configure.ac +++ b/configure.ac @@ -549,7 +549,7 @@ if test "$enable_spell_checker" = "yes" -a "$have_gecko_spell_checker" != "yes"; AC_MSG_ERROR([Spell check support requested but $gecko_cv_gecko was not compiled with 'spellchecker' extension enabled.]) fi -if test "$enable_spell_checker" -a "$have_gecko_spell_checker" = "yes"; then +if test "$enable_spell_checker" = "yes" -a "$have_gecko_spell_checker" = "yes"; then # FIXME check which version we really need ENCHANT_REQUIRED=1.0 |