summaryrefslogtreecommitdiffstats
path: root/win/tcl.m4
diff options
context:
space:
mode:
authorandreas_kupries <akupries@shaw.ca>2010-08-31 20:47:18 (GMT)
committerandreas_kupries <akupries@shaw.ca>2010-08-31 20:47:18 (GMT)
commit6e5f41b1d18cd53c898dc9aafa1b2f207cdd538c (patch)
tree1c591e9453099675817bee2be8f00684447be45a /win/tcl.m4
parentccda1862f4dd73523f2861c2424643f886b08b14 (diff)
downloadtk-6e5f41b1d18cd53c898dc9aafa1b2f207cdd538c.zip
tk-6e5f41b1d18cd53c898dc9aafa1b2f207cdd538c.tar.gz
tk-6e5f41b1d18cd53c898dc9aafa1b2f207cdd538c.tar.bz2
* win/tcl.m4: Applied patch by Jeff fixing issues with the
manifest handling on Win64. * win/configure: Regenerated.
Diffstat (limited to 'win/tcl.m4')
-rw-r--r--win/tcl.m46
1 files changed, 4 insertions, 2 deletions
diff --git a/win/tcl.m4 b/win/tcl.m4
index cd9a36e..8877181 100644
--- a/win/tcl.m4
+++ b/win/tcl.m4
@@ -960,8 +960,10 @@ print("manifest needed")
# 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 $1 -outputresource:\[$]@\;2"
- VC_MANIFEST_EMBED_EXE="mt.exe -nologo -manifest \[$]@.manifest $1 -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 $1 -outputresource:\[$]@\;2 ; fi"
+ VC_MANIFEST_EMBED_EXE="if test -f \[$]@.manifest ; then mt.exe -nologo -manifest \[$]@.manifest $1 -outputresource:\[$]@\;1 ; fi"
result=yes
if test "x$1" != x ; then
result="yes ($1)"