From: hasufell Date: Wed, 18 Sep 2013 03:57:03 +0000 (-0700) Subject: BUILD: fix withXaw conditional (tiny change) X-Git-Url: http://winboard.nl/cgi-bin?p=xboard.git;a=commitdiff_plain;h=356647c90da4718630c8cfed1a00f416d00aa93f BUILD: fix withXaw conditional (tiny change) Listing both one after another leads to withXaw being false if you pass "--with-Xaw3d --without-Xaw". --- 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)