]> granicus.if.org Git - graphviz/commitdiff
fix: configure output when Lefty is disabled
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 24 Dec 2021 18:39:53 +0000 (10:39 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 27 Dec 2021 16:35:14 +0000 (08:35 -0800)
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.

configure.ac

index be6dd96422fabd2621fa655c51fd3e6e31e4702a..2f18bf6efe06d169a402e7a4a7d7952c30592cc5 100644 (file)
@@ -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"])