# HG changeset patch # User Stu Tomlinson # Date 1206973526 0 # Node ID d75346b9b29bd34a28b7f9aed2b18ad64452be3e # Parent 82b7d38a3687523fda39e7ebb661f478126bcd88 If the default setting is enabled for options to ./configure, the help string should be --disable-option diff -r 82b7d38a3687 -r d75346b9b29b configure.ac --- a/configure.ac Mon Mar 31 07:45:21 2008 +0000 +++ b/configure.ac Mon Mar 31 14:25:26 2008 +0000 @@ -2146,14 +2146,14 @@ dnl ####################################################################### dnl # Disable pixmap installation dnl ####################################################################### -AC_ARG_ENABLE(pixmaps-install, AC_HELP_STRING([--enable-pixmaps-install], [enable installation of pixmap files]), enable_pixmaps="$enableval", enable_pixmaps=yes) +AC_ARG_ENABLE(pixmaps-install, AC_HELP_STRING([--disable-pixmaps-install], [disable installation of pixmap files]), enable_pixmaps="$enableval", enable_pixmaps=yes) AM_CONDITIONAL(INSTALL_PIXMAPS, test "x$enable_pixmaps" = "xyes") dnl ####################################################################### dnl # Disable installation of translation files dnl ####################################################################### -AC_ARG_ENABLE(nls, AC_HELP_STRING([--enable-nls], [enable installation of translation files]), enable_i18n="$enableval", enable_i18n=yes) +AC_ARG_ENABLE(nls, AC_HELP_STRING([--disable-nls], [disable installation of translation files]), enable_i18n="$enableval", enable_i18n=yes) AM_CONDITIONAL(INSTALL_I18N, test "x$enable_i18n" = "xyes")