From f90d07613c7a86eca85df9f8209ce586ce70ecf6 Mon Sep 17 00:00:00 2001 From: Chris Dickens Date: Mon, 20 Jan 2020 18:02:19 -0800 Subject: Windows: Remove support for WinCE and Visual Studio older than 2013 There appears to be no need for the WinCE backend anymore, and it is increasingly difficult to keep healthy as the rest of the library changes. Require at least Visual Studio 2013 to compile. This simplifies matters as there is some semblance of C99 support there. Signed-off-by: Chris Dickens --- appveyor_minGW.bat | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'appveyor_minGW.bat') diff --git a/appveyor_minGW.bat b/appveyor_minGW.bat index bdb4750..3ed6272 100644 --- a/appveyor_minGW.bat +++ b/appveyor_minGW.bat @@ -6,7 +6,7 @@ if [%Configuration%] NEQ [Release] exit 0 if [%Platform%] NEQ [x64] goto Win32 C:\msys64\usr\bin\bash -e -l -c "./bootstrap.sh" || exit /B C:\msys64\usr\bin\bash -e -l -c "mkdir build-x64" || exit /B -C:\msys64\usr\bin\bash -e -l -c "cd build-x64 && ../configure --prefix=/mingw64 --build=x86_64-w64-mingw32 --host=x86_64-w64-mingw32" || exit /B +C:\msys64\usr\bin\bash -e -l -c "cd build-x64 && ../configure --prefix=/mingw64 --build=x86_64-w64-mingw32 --host=x86_64-w64-mingw32 --enable-examples-build --enable-tests-build" || exit /B C:\msys64\usr\bin\bash -e -l -c "cd build-x64 && make -j4" || exit /B C:\msys64\usr\bin\bash -e -l -c "cd build-x64 && make install" || exit /B @@ -14,6 +14,6 @@ C:\msys64\usr\bin\bash -e -l -c "cd build-x64 && make install" || exit /B if [%Platform%] NEQ [Win32] exit 0 C:\msys64\usr\bin\bash -e -l -c "./bootstrap.sh" || exit /B C:\msys64\usr\bin\bash -e -l -c "mkdir build-Win32" || exit /B -C:\msys64\usr\bin\bash -e -l -c "cd build-Win32 && ../configure --prefix=/mingw32 --build=i686-w64-mingw32 --host=i686-w64-mingw32" || exit /B +C:\msys64\usr\bin\bash -e -l -c "cd build-Win32 && ../configure --prefix=/mingw32 --build=i686-w64-mingw32 --host=i686-w64-mingw32 --enable-examples-build --enable-tests-build" || exit /B C:\msys64\usr\bin\bash -e -l -c "cd build-Win32 && make -j4" || exit /B -C:\msys64\usr\bin\bash -e -l -c "cd build-Win32 && make install" || exit /B +C:\msys64\usr\bin\bash -e -l -c "cd build-Win32 && make install" || exit /B \ No newline at end of file -- cgit v1.2.1