diff options
author | mdejong <mdejong> | 2001-11-25 01:56:09 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2001-11-25 01:56:09 (GMT) |
commit | c3778545e13e2216951950fec35c2283d7ac01b4 (patch) | |
tree | 7922af0731c52be1bc2079bd9c8636f15149b52b /win/configure | |
parent | 6f30a681fb64575c78ebdc1542209fb2c0a2c06e (diff) | |
download | tcl-c3778545e13e2216951950fec35c2283d7ac01b4.zip tcl-c3778545e13e2216951950fec35c2283d7ac01b4.tar.gz tcl-c3778545e13e2216951950fec35c2283d7ac01b4.tar.bz2 |
* win/configure: Regen.
* win/tcl.m4 (SC_CONFIG_CFLAGS): Add comctl32.lib
to wish link libs. This change was originally added
to Tk on 2001-11-09 but was not committed to Tcl.
Diffstat (limited to 'win/configure')
-rwxr-xr-x | win/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/configure b/win/configure index 5512e52..e097eec 100755 --- a/win/configure +++ b/win/configure @@ -1195,7 +1195,7 @@ echo "configure:1191: checking compiler flags" >&5 SHLIB_LD="" SHLIB_LD_LIBS="" LIBS="" - LIBS_GUI="-lgdi32 -lcomdlg32 -limm32" + LIBS_GUI="-lgdi32 -lcomdlg32 -limm32 -lcomctl32" STLIB_LD='${AR} cr' RC_OUT=-o RC_TYPE= @@ -1336,7 +1336,7 @@ echo "configure:1191: checking compiler flags" >&5 SHLIB_LD="${LINKBIN} -dll -nologo -incremental:no" SHLIB_LD_LIBS="user32.lib advapi32.lib" LIBS="user32.lib advapi32.lib" - LIBS_GUI="gdi32.lib comdlg32.lib imm32.lib" + LIBS_GUI="gdi32.lib comdlg32.lib imm32.lib comctl32.lib" RC_OUT=-fo RC_TYPE=-r RC_INCLUDE=-i |