diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-08-17 20:12:30 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-08-17 20:12:30 +0800 |
commit | baf936755d8287b830e9293ae7d0bfb093d4e5b0 (patch) | |
tree | 3420ce43de423bd41b282ce4745678b87f8972f5 /configure.ac | |
parent | 71781157eb0818fa949a1962ce9c67405690b6bd (diff) | |
download | gsoc2013-epiphany-baf936755d8287b830e9293ae7d0bfb093d4e5b0.tar.gz gsoc2013-epiphany-baf936755d8287b830e9293ae7d0bfb093d4e5b0.tar.zst gsoc2013-epiphany-baf936755d8287b830e9293ae7d0bfb093d4e5b0.zip |
Fix --disable-focus-fix and --disable-psm configure args.
2005-08-17 Christian Persch <chpe@cvs.gnome.org>
* configure.ac:
Fix --disable-focus-fix and --disable-psm configure args.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
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]) |