From 5ad79930f86cb4fd7eb1bdd38a58446168cb239e Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Mon, 6 Jun 2022 20:01:41 -0400 Subject: [PATCH] Fix reconfiguration when using --without-x. We need to consider the user's selection when checking whether or not to build the Motif UI, because the cached result may have come from a prior configure run. --- configure.ac | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 6be037e..2c359a7 100644 --- a/configure.ac +++ b/configure.ac @@ -58,10 +58,11 @@ AS_IF([test x"$with_x" = x"yes" && test "$dx_cv_have_motif" != x"yes"], AC_SUBST([MOTIF_CFLAGS], [@&t@]) AC_SUBST([MOTIF_LIBS], [@&t@]) -AS_IF([test x"$dx_cv_have_motif" = x"yes"], +AM_CONDITIONAL([HAVE_MOTIF], + [test x"$with_x" != x"no" && test x"$dx_cv_have_motif" = x"yes"]) +AM_COND_IF([HAVE_MOTIF], [MOTIF_CFLAGS=$dx_cv_motif_cflags MOTIF_LIBS=$dx_cv_motif_libs], [AC_DEFINE([X_DISPLAY_MISSING])]) -AM_CONDITIONAL([HAVE_MOTIF], [test x"$dx_cv_have_motif" = x"yes"]) AH_TEMPLATE([X11_RENDER_DEBUG], [Define to 1 to enable visual aids for debugging X11 rendering.]) -- 2.43.2