This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository e16.
View the commit online.
commit 6a1a3fff155af072ef801c5a779185496b7295b3
Author: Kim Woelders <[email protected]>
AuthorDate: Thu Oct 20 19:17:37 2022 +0200
autofoo: Fix incorrect handling of no-container option
cf4e4d71932824a3b7f085b88ce05e47b2d5a54a inadvertently changed
USE_CONTAINER_WIN to be disabled by default.
Disabling USE_CONTAINER_WIN causes focus issues and incorrect initial
placement of client in frame window for some clients, so this disabling
by default is rather unfortunate.
---
configure.ac | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/configure.ac b/configure.ac
index a504baaa..f573f27d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -469,11 +469,11 @@ if test "x$enable_dialogs" = "xyes"; then
AC_DEFINE(ENABLE_DIALOGS, 1, [Configuration dialog support])
fi
-AC_ARG_ENABLE(no-container,
- AS_HELP_STRING([--enable-no-container],
+AC_ARG_ENABLE(containerless,
+ AS_HELP_STRING([--enable-containerless],
[do not use container window (experimental) @<:@default=no@:>@]),,
- enable_no_container=no)
-if test "x$enable_no_container" = "xyes"; then
+ enable_containerless=no)
+if test "x$enable_containerless" != "xyes"; then
AC_DEFINE(USE_CONTAINER_WIN, 1, [Use container window])
fi
@@ -577,7 +577,7 @@ echo " ScreenSaver .................. $enable_xscrnsaver"
echo " D-Bus ........................ $enable_dbus"
echo " XI2 .......................... $enable_xi2"
echo " Present....................... $enable_xpresent"
-echo " Do not use container window .. $enable_no_container"
+echo " Do not use container window .. $enable_containerless"
echo
echo "Installation path .............. $prefix"
echo " Install HTML docs ............ $enable_docs"
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.