From 356647c90da4718630c8cfed1a00f416d00aa93f Mon Sep 17 00:00:00 2001 From: hasufell Date: Tue, 17 Sep 2013 20:57:03 -0700 Subject: [PATCH] BUILD: fix withXaw conditional (tiny change) Listing both one after another leads to withXaw being false if you pass "--with-Xaw3d --without-Xaw". --- configure.ac | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index cd85783..c946f4e 100644 --- a/configure.ac +++ b/configure.ac @@ -248,8 +248,7 @@ fi dnl | make results available in Makefile.am AM_CONDITIONAL([withGTK], [test x"$with_GTK" = x"yes"]) -AM_CONDITIONAL([withXaw], [test x"$with_Xaw3d" = x"yes"]) -AM_CONDITIONAL([withXaw], [test x"$with_Xaw" = x"yes"]) +AM_CONDITIONAL([withXaw], [test x"$with_Xaw3d" = x"yes" || test x"$with_Xaw" = x"yes"]) AC_SUBST(FRONTEND_CFLAGS) -- 1.7.0.4