From: Matthew Fernandez Date: Fri, 24 Dec 2021 18:39:53 +0000 (-0800) Subject: fix: configure output when Lefty is disabled X-Git-Tag: 3.0.0~104^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c76416d05b1fc6140780412ad919b91dca96586c;p=graphviz fix: configure output when Lefty is disabled Commit 1a4ad00b59cc1e1e9302fcbd1a205495ee59cab5 disabled Lefty by default in the Autotools build system but accidentally made the configure output say nothing next to "Lefty: " when Lefty is disabled. --- diff --git a/configure.ac b/configure.ac index be6dd9642..2f18bf6ef 100644 --- a/configure.ac +++ b/configure.ac @@ -1610,6 +1610,8 @@ AS_IF([test "x$enable_lefty" = "xyes"], [ AC_MSG_ERROR([Could not find Xmu, cannot build lefty]) ]) ]) +], [ + use_lefty="No (disabled by default)" ]) AM_CONDITIONAL(WITH_LEFTY, [test "x$use_lefty" = "xYes"])