summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <Alan.Coopersmith@sun.com>2005-07-28 23:33:57 +0000
committerAlan Coopersmith <Alan.Coopersmith@sun.com>2005-07-28 23:33:57 +0000
commitd5d669b04ecbd91bb2db9ddc6238acabbeaabbe0 (patch)
tree05eafad607cbced3a8377edc302bcd7e5265262f
parent86529c07d6ff69ef936ee370be07b373e2961360 (diff)
If neither --enable-dmx or --disable-dmx are specified, default to "yes" on
Linux, "no" on everything else (matches defaults in monolith Imake)
-rw-r--r--configure.ac5
1 files changed, 4 insertions, 1 deletions
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