Commit 4eb06506 authored by Rafaël Carré's avatar Rafaël Carré

Don't trust __MINGW32_MINOR_VERSION for mingw64

the version number hasn't been updated
parent 394f9217
......@@ -438,7 +438,9 @@ AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"], [
AC_PREPROC_IFELSE([
#include <_mingw.h>
#if (__MINGW32_MAJOR_VERSION == 3) && (__MINGW32_MINOR_VERSION < 15)
#ifndef __MINGW64_VERSION_MAJOR
# error Attempting to use mingw-runtime with broken vsnprintf support
#endif
#endif
], [
AC_MSG_RESULT([ok])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment