If neither --enable-dmx or --disable-dmx are specified, default to "yes" on

Linux, "no" on everything else (matches defaults in monolith Imake)
This commit is contained in:
Alan Coopersmith 2005-07-28 23:33:57 +00:00
parent 86529c07d6
commit d5d669b04e

View File

@ -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