diff options
author | hobbs <hobbs> | 2006-03-28 21:16:14 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2006-03-28 21:16:14 (GMT) |
commit | d1dcee1f60ab850711da254e86738af719b25a8e (patch) | |
tree | e5c19567055674d1f47b9d317b738585d9ac51e4 /win/tcl.m4 | |
parent | 7ef929a5331e888efbd2ba9167f7fc3e2ccf735b (diff) | |
download | tcl-d1dcee1f60ab850711da254e86738af719b25a8e.zip tcl-d1dcee1f60ab850711da254e86738af719b25a8e.tar.gz tcl-d1dcee1f60ab850711da254e86738af719b25a8e.tar.bz2 |
* win/configure, win/tcl.m4: define MACHINE for gcc builds as well.
Needed by Tk for manifest generation.
Diffstat (limited to 'win/tcl.m4')
-rw-r--r-- | win/tcl.m4 | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -392,6 +392,10 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [ SHLIB_SUFFIX=".dll" + # MACHINE is IX86 for LINK, but this is used by the manifest, + # which requires x86|amd64|ia64. + MACHINE="X86" + # Check for a bug in gcc's windres that causes the # compile to fail when a Windows native path is # passed into windres. The mingw toolchain requires @@ -568,9 +572,6 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [ # This is a 2-stage check to make sure we have the 64-bit SDK # We have to know where the SDK is installed. # This magic is based on MS Platform SDK for Win2003 SP1 - hobbs - # MACHINE is IX86 for LINK, but this is used by the manifest, - # which requires x86|amd64|ia64. - MACHINE="X86" if test "$do64bit" != "no" ; then if test "x${MSSDK}x" = "xx" ; then MSSDK="C:/Progra~1/Microsoft Platform SDK" |