diff options
-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= |