From cf4e4d71932824a3b7f085b88ce05e47b2d5a54a Mon Sep 17 00:00:00 2001 From: Kim Woelders Date: Mon, 9 May 2022 15:45:20 +0200 Subject: [PATCH] autofoo: Invert no-container option logic Should make it less likely that it is activated by mistake. (apparently causes focus issues) --- configure.ac | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/configure.ac b/configure.ac index d5cb8b6a..42fc140e 100644 --- a/configure.ac +++ b/configure.ac @@ -473,11 +473,11 @@ if test "x$enable_dialogs" = "xyes"; then AC_DEFINE(ENABLE_DIALOGS, 1, [Configuration dialog support]) fi -AC_ARG_ENABLE(container, - AS_HELP_STRING([--enable-container], - [use container window (experimental) @<:@default=yes@:>@]),, - enable_container=yes) -if test "x$enable_container" = "xyes"; then +AC_ARG_ENABLE(no-container, + AS_HELP_STRING([--enable-no-container], + [do not use container window (experimental) @<:@default=no@:>@]),, + enable_no_container=no) +if test "x$enable_no_container" = "xyes"; then AC_DEFINE(USE_CONTAINER_WIN, 1, [Use container window]) fi @@ -581,7 +581,7 @@ echo " ScreenSaver .................. $enable_xscrnsaver" echo " D-Bus ........................ $enable_dbus" echo " XI2 .......................... $enable_xi2" echo " Present....................... $enable_xpresent" -echo " Use container window ......... $enable_container" +echo " Do not use container window .. $enable_no_container" echo echo "Installation path .............. $prefix" echo " Install HTML docs ............ $enable_docs"