configure.ac: Make default configuration for MinGW disable unsupported extensions and DDXs
Same as the default configuration for Cygwin, --disable-xorg and --disable-dmx DDX by default, and force --disable-xv and other unsupported extensions Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Reviewed-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
This commit is contained in:
parent
f3410b97cf
commit
0426e6d65b
|
@ -698,7 +698,7 @@ AM_CONDITIONAL(INSTALL_LIBXF86CONFIG, [test "x$INSTALL_LIBXF86CONFIG" = xyes])
|
||||||
dnl DDX Detection... Yes, it's ugly to have it here... but we need to
|
dnl DDX Detection... Yes, it's ugly to have it here... but we need to
|
||||||
dnl handle this early on so that we don't require unsupported extensions
|
dnl handle this early on so that we don't require unsupported extensions
|
||||||
case $host_os in
|
case $host_os in
|
||||||
cygwin*)
|
cygwin* | mingw*)
|
||||||
CONFIG_DBUS_API=no
|
CONFIG_DBUS_API=no
|
||||||
CONFIG_HAL=no
|
CONFIG_HAL=no
|
||||||
CONFIG_UDEV=no
|
CONFIG_UDEV=no
|
||||||
|
@ -1547,6 +1547,7 @@ if test "x$XORG" = xauto; then
|
||||||
XORG="yes"
|
XORG="yes"
|
||||||
case $host_os in
|
case $host_os in
|
||||||
cygwin*) XORG="no" ;;
|
cygwin*) XORG="no" ;;
|
||||||
|
mingw*) XORG="no" ;;
|
||||||
darwin*) XORG="no" ;;
|
darwin*) XORG="no" ;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
@ -1948,6 +1949,7 @@ if test "x$DMX" = xauto; then
|
||||||
DMX="$have_dmx"
|
DMX="$have_dmx"
|
||||||
case $host_os in
|
case $host_os in
|
||||||
cygwin*) DMX="no" ;;
|
cygwin*) DMX="no" ;;
|
||||||
|
mingw*) DMX="no" ;;
|
||||||
darwin*) DMX="no" ;;
|
darwin*) DMX="no" ;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue