diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | m4/gecko.m4 | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2005-12-30 Christian Persch <chpe@cvs.gnome.org> + * m4/gecko.m4: + + Improve "gecko not found" message. Bug #319253. + +2005-12-30 Christian Persch <chpe@cvs.gnome.org> + * lib/ephy-file-helpers.c: (ephy_file_helpers_init), (my_gdk_spawn_make_environment_for_screen), (make_spawn_environment_for_sn_context), diff --git a/m4/gecko.m4 b/m4/gecko.m4 index 7a8d81643..b9053e148 100644 --- a/m4/gecko.m4 +++ b/m4/gecko.m4 @@ -64,7 +64,7 @@ if test -z "$_GECKO"; then fi if test "x$_GECKO" = "x"; then - AC_MSG_ERROR([No gecko found]) + AC_MSG_ERROR([No gecko found; you may need to adjust PKG_CONFIG_PATH or install a mozilla/firefox/xulrunner -devel package]) elif ! ( echo "$_geckos" | egrep "(^| )$_GECKO(\$| )" > /dev/null); then AC_MSG_ERROR([Unknown gecko "$_GECKO" specified]) fi |