diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2005-08-17 Christian Persch <chpe@cvs.gnome.org> + + * configure.ac: + + Fix --disable-focus-fix and --disable-psm configure args. + 2005-08-16 Christian Persch <chpe@cvs.gnome.org> * src/ephy-find-toolbar.c: (entry_activate_cb), diff --git a/configure.ac b/configure.ac index 881414b13..973247147 100644 --- a/configure.ac +++ b/configure.ac @@ -433,7 +433,7 @@ dnl Broken everywhere dnl Provide a configure switch for easy testing of *real* fixes in gtkmozembed AC_MSG_CHECKING([whether to work around broken gtkmozembed focus]) -AC_ARG_ENABLE([--enable-focus-fix], +AC_ARG_ENABLE([focus-fix], AS_HELP_STRING([focus-fix],[Enable the workaround for the broken GtkMozEmbed focus handling (default: enabled)]), [want_focus_fix=$enableval], [want_focus_fix=yes]) @@ -451,7 +451,7 @@ AC_DEFINE([MOZILLA_INTERNAL_API],[1],[Define for access to internal mozilla API] dnl Make sure we don't accidentally build without PSM support AC_MSG_CHECKING([whether to include PSM support]) -AC_ARG_ENABLE([--disable-psm], +AC_ARG_ENABLE([psm], AS_HELP_STRING([psm],[Disable PSM support (default: enabled)]), [want_psm=$enableval], [want_psm=yes]) |