diff options
author | mdejong <mdejong> | 2001-06-26 00:43:29 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2001-06-26 00:43:29 (GMT) |
commit | 76c470b4acca3995b035a2d9443db97489aeb75e (patch) | |
tree | 813aa448566b7e7eb9a2d40c89b2e5e4908c5204 | |
parent | b6f50b959cae44d44ea34fc38f6b1781a75a5efb (diff) | |
download | tcl-76c470b4acca3995b035a2d9443db97489aeb75e.zip tcl-76c470b4acca3995b035a2d9443db97489aeb75e.tar.gz tcl-76c470b4acca3995b035a2d9443db97489aeb75e.tar.bz2 |
* win/tcl.m4 (SC_CONFIG_CFLAGS): Link to the
imm32 library when building with mingw gcc.
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | win/configure | 2 | ||||
-rw-r--r-- | win/tcl.m4 | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,5 +1,10 @@ 2001-06-25 Mo DeJong <mdejong@redhat.com> + * win/tcl.m4 (SC_CONFIG_CFLAGS): Link to the + imm32 library when building with mingw gcc. + +2001-06-25 Mo DeJong <mdejong@redhat.com> + * win/configure: Regen. * win/tcl.m4 (SC_CONFIG_CFLAGS): When building with gcc, don't attempt to link with LD or support dllwrap. diff --git a/win/configure b/win/configure index 947973c..c05d1fe 100755 --- a/win/configure +++ b/win/configure @@ -1135,7 +1135,7 @@ echo "configure:1122: checking compiler flags" >&5 SHLIB_LD="" SHLIB_LD_LIBS="" LIBS="" - LIBS_GUI="-lgdi32 -lcomdlg32" + LIBS_GUI="-lgdi32 -lcomdlg32 -limm32" STLIB_LD="${AR}" RC_OUT=-o RC_TYPE= @@ -344,7 +344,7 @@ AC_DEFUN(SC_CONFIG_CFLAGS, [ SHLIB_LD="" SHLIB_LD_LIBS="" LIBS="" - LIBS_GUI="-lgdi32 -lcomdlg32" + LIBS_GUI="-lgdi32 -lcomdlg32 -limm32" STLIB_LD="${AR}" RC_OUT=-o RC_TYPE= |