diff options
author | hobbs <hobbs> | 2010-08-27 00:09:29 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2010-08-27 00:09:29 (GMT) |
commit | 961806102628485ce7f0e5d0abdb9f361576effb (patch) | |
tree | 6c2bf5909c4ca6b7accabfe6fecd001a314894bc /win/configure.in | |
parent | 6b3c3d4a59d1cc31cf0ca2a4b8fe5d2e085fd955 (diff) | |
download | tcl-961806102628485ce7f0e5d0abdb9f361576effb.zip tcl-961806102628485ce7f0e5d0abdb9f361576effb.tar.gz tcl-961806102628485ce7f0e5d0abdb9f361576effb.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 f4ba2fe..aca324e 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.104.2.10 2010/08/04 17:02:40 dgp Exp $ +# RCS: @(#) $Id: configure.in,v 1.104.2.11 2010/08/27 00:09:30 hobbs Exp $ AC_INIT(../generic/tcl.h) AC_PREREQ(2.59) @@ -354,6 +354,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 #------------------------------------------------------------------------ |