diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-12-03 15:51:07 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-12-03 15:51:07 (GMT) |
commit | 3c354d91432f5a951efb12e957299cacdeafb897 (patch) | |
tree | 323ece4e17f57a153846860eb27c003b35b4e461 /win/tcl.m4 | |
parent | 29fa1d125581718f5ece85fb7cce4901faf99127 (diff) | |
parent | 7f2c3a3f39d6a76f0656cbffc7e589b1a59bc346 (diff) | |
download | tk-3c354d91432f5a951efb12e957299cacdeafb897.zip tk-3c354d91432f5a951efb12e957299cacdeafb897.tar.gz tk-3c354d91432f5a951efb12e957299cacdeafb897.tar.bz2 |
Fix 64-bit MSVC build without SDK: If the MSVC version is recent enough, compiling without SDK works fine (provided that the build is configured using "--enable-64bit")
Diffstat (limited to 'win/tcl.m4')
-rw-r--r-- | win/tcl.m4 | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -826,12 +826,9 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [ ;; esac if test ! -d "${PATH64}" ; then - AC_MSG_WARN([Could not find 64-bit $MACHINE SDK to enable 64bit mode]) - AC_MSG_WARN([Ensure latest Platform SDK is installed]) - do64bit="no" - else - AC_MSG_RESULT([ Using 64-bit $MACHINE mode]) + AC_MSG_WARN([Could not find 64-bit $MACHINE SDK]) fi + AC_MSG_RESULT([ Using 64-bit $MACHINE mode]) fi LIBS="netapi32.lib kernel32.lib user32.lib advapi32.lib userenv.lib ws2_32.lib" |