diff options
author | hobbs <hobbs> | 2010-08-27 00:50:51 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2010-08-27 00:50:51 (GMT) |
commit | e8ae0e2a82a55688671443664a4ccf8f4a05a2b9 (patch) | |
tree | ce0ee98fbdec76d80335ab94c8c52f7a77b01a08 /win/configure.in | |
parent | 954dff064d9c313b4d2d44e2876d8346e9d9f43a (diff) | |
download | tcl-e8ae0e2a82a55688671443664a4ccf8f4a05a2b9.zip tcl-e8ae0e2a82a55688671443664a4ccf8f4a05a2b9.tar.gz tcl-e8ae0e2a82a55688671443664a4ccf8f4a05a2b9.tar.bz2 |
* win/Makefile.in (VC_MANIFEST_EMBED_DLL VC_MANIFEST_EMBED_EXE):
* win/configure, win/configure.in, win/tcl.m4: SC_EMBED_MANIFEST
macro and --enable-embedded-manifest configure arg added to
support manifest embedding where we know the magic. Help prevents
DLL hell with MSVC8+.
Diffstat (limited to 'win/configure.in')
-rw-r--r-- | win/configure.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/win/configure.in b/win/configure.in index 3786b74..77420a2 100644 --- a/win/configure.in +++ b/win/configure.in @@ -3,7 +3,7 @@ # generate the file "configure", which is run during Tcl installation # to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.122 2010/04/30 21:15:42 dgp Exp $ +# RCS: @(#) $Id: configure.in,v 1.123 2010/08/27 00:50:51 hobbs Exp $ AC_INIT(../generic/tcl.h) AC_PREREQ(2.59) @@ -361,6 +361,12 @@ SC_ENABLE_SYMBOLS TCL_DBGX=${DBGX} +#-------------------------------------------------------------------- +# Embed the manifest if we can determine how +#-------------------------------------------------------------------- + +SC_EMBED_MANIFEST + #------------------------------------------------------------------------ # tclConfig.sh refers to this by a different name #------------------------------------------------------------------------ |