diff options
author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2015-09-30 11:17:41 (GMT) |
---|---|---|
committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2015-09-30 11:17:41 (GMT) |
commit | b815fdae0f7dd6ad1cfec5c0f60b721869559fc9 (patch) | |
tree | 975f84112242e5579e2fc53d01333ad75bed8122 /win/configure | |
parent | 09c013131c2aacc312786f5a673f1e753ccec4b2 (diff) | |
parent | 6b0cdcf48a164136dddb5bd786e12fbb181e6ca1 (diff) | |
download | tk-b815fdae0f7dd6ad1cfec5c0f60b721869559fc9.zip tk-b815fdae0f7dd6ad1cfec5c0f60b721869559fc9.tar.gz tk-b815fdae0f7dd6ad1cfec5c0f60b721869559fc9.tar.bz2 |
Don't limit Universal runtime support to VisualStudio version 14 only, future versions will probably have it as well.
Diffstat (limited to 'win/configure')
-rwxr-xr-x | win/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/configure b/win/configure index 1959f8f..5840966 100755 --- a/win/configure +++ b/win/configure @@ -3907,7 +3907,7 @@ echo "${ECHO_T}using shared flags" >&6 LIBRARIES="\${SHARED_LIBRARIES}" EXESUFFIX="\${DBGX}.exe" case "x`echo \${VisualStudioVersion}`" in - x14*) + x1[4-9]*) lflags="${lflags} -nodefaultlib:libucrt.lib" ;; *) @@ -3955,7 +3955,7 @@ echo "${ECHO_T} Using 64-bit $MACHINE mode" >&6 LIBS="netapi32.lib kernel32.lib user32.lib advapi32.lib ws2_32.lib" case "x`echo \${VisualStudioVersion}`" in - x14*) + x1[4-9]*) LIBS="$LIBS ucrt.lib" ;; *) |