Enable Direct3D support in the lowend MinGW build, for machines that lack SSE support such as Windows XP machines with AMD processors that have only MMX and 3DNow

This commit is contained in:
Jonathan Campbell 2019-02-10 17:49:21 -08:00
parent 655466fde6
commit 4210fd51ee

View File

@ -48,6 +48,6 @@ export CXXFLAGS="$new$CXXFLAGS"
echo Compiling DOSBox-X
chmod +x configure
# FIXME: I would like MinGW builds to enable the debugger, eventually
./configure --enable-core-inline --disable-mt32 --prefix=/usr "$@" || exit 1
./configure --enable-core-inline --disable-mt32 --enable-d3d9 --enable-d3d-shaders --prefix=/usr "$@" || exit 1
make -j3 || exit 1