From d5d669b04ecbd91bb2db9ddc6238acabbeaabbe0 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Thu, 28 Jul 2005 23:33:57 +0000 Subject: [PATCH] If neither --enable-dmx or --disable-dmx are specified, default to "yes" on Linux, "no" on everything else (matches defaults in monolith Imake) --- configure.ac | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ef0b936b6..a0c553f76 100644 --- a/configure.ac +++ b/configure.ac @@ -215,7 +215,10 @@ AC_DEFINE(SHAPE,1,[Support SHAPE extension]) AC_MSG_CHECKING([whether to build Xdmx DDX]) if test x$DMX = xauto; then - DMX="yes" + case $host_os in + linux*) DMX="yes" ;; + *) DMX="no" ;; + esac fi AC_MSG_RESULT([$DMX]) if test "$DMX" = yes; then