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:
parent
86529c07d6
commit
d5d669b04e
|
@ -215,7 +215,10 @@ AC_DEFINE(SHAPE,1,[Support SHAPE extension])
|
||||||
|
|
||||||
AC_MSG_CHECKING([whether to build Xdmx DDX])
|
AC_MSG_CHECKING([whether to build Xdmx DDX])
|
||||||
if test x$DMX = xauto; then
|
if test x$DMX = xauto; then
|
||||||
DMX="yes"
|
case $host_os in
|
||||||
|
linux*) DMX="yes" ;;
|
||||||
|
*) DMX="no" ;;
|
||||||
|
esac
|
||||||
fi
|
fi
|
||||||
AC_MSG_RESULT([$DMX])
|
AC_MSG_RESULT([$DMX])
|
||||||
if test "$DMX" = yes; then
|
if test "$DMX" = yes; then
|
||||||
|
|
Loading…
Reference in New Issue