summaryrefslogtreecommitdiffstats
path: root/win/configure
diff options
context:
space:
mode:
authorandreas_kupries <akupries@shaw.ca>2010-08-31 20:46:41 (GMT)
committerandreas_kupries <akupries@shaw.ca>2010-08-31 20:46:41 (GMT)
commit7b756e9b659287e304deba8f5c99426a82b30c64 (patch)
tree22169aa832c36671af89fbbb5f529014d517b161 /win/configure
parentf7bd56932c4668f0e968e009c5d0b533384eea58 (diff)
downloadtcl-7b756e9b659287e304deba8f5c99426a82b30c64.zip
tcl-7b756e9b659287e304deba8f5c99426a82b30c64.tar.gz
tcl-7b756e9b659287e304deba8f5c99426a82b30c64.tar.bz2
* win/tcl.m4: Applied patch by Jeff fixing issues with the
manifest handling on Win64. * win/configure: Regenerated.
Diffstat (limited to 'win/configure')
-rwxr-xr-xwin/configure6
1 files changed, 4 insertions, 2 deletions
diff --git a/win/configure b/win/configure
index aa0c5c0..f58e61d 100755
--- a/win/configure
+++ b/win/configure
@@ -4449,8 +4449,10 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
# Could add 'if test -f' check, but manifest should be created
# in this compiler case
# Add in a manifest argument that may be specified
- VC_MANIFEST_EMBED_DLL="mt.exe -nologo -manifest \$@.manifest -outputresource:\$@\;2"
- VC_MANIFEST_EMBED_EXE="mt.exe -nologo -manifest \$@.manifest -outputresource:\$@\;1"
+ # XXX Needs improvement so that the test for existence accounts
+ # XXX for a provided (known) manifest
+ VC_MANIFEST_EMBED_DLL="if test -f \$@.manifest ; then mt.exe -nologo -manifest \$@.manifest -outputresource:\$@\;2 ; fi"
+ VC_MANIFEST_EMBED_EXE="if test -f \$@.manifest ; then mt.exe -nologo -manifest \$@.manifest -outputresource:\$@\;1 ; fi"
result=yes
if test "x" != x ; then
result="yes ()"