summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhobbs <hobbs>2002-08-08 01:44:02 (GMT)
committerhobbs <hobbs>2002-08-08 01:44:02 (GMT)
commit00ab53bb531128551716b0a938caa4f60fd6c109 (patch)
tree7430bd97dc260adaabebf48b6cb4b0ba2d8b9e3c
parent6508dcbad1850691240a5736b3f32d234e538e14 (diff)
downloadtk-00ab53bb531128551716b0a938caa4f60fd6c109.zip
tk-00ab53bb531128551716b0a938caa4f60fd6c109.tar.gz
tk-00ab53bb531128551716b0a938caa4f60fd6c109.tar.bz2
* win/configure:
* win/tcl.m4: added shell32 to libs for updated native Windows tk_chooseDirectory dialog.
-rw-r--r--ChangeLog25
-rwxr-xr-xwin/configure4
-rw-r--r--win/tcl.m44
3 files changed, 29 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 79f65f2..53c68f9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,28 @@
+2002-08-07 Jeff Hobbs <jeffh@ActiveState.com>
+
+ * win/tkWinMenu.c (TkpSetWindowMenuBar): fixed logic bug in when
+ to idle call ReconfigureWindowsMenu.
+
+ * doc/GetBitmap.3: removed doc refs to deprecated
+ Tk_GetBitmapFromData. [Bug #590379]
+
+ * generic/tkPanedWindow.c (Tk_PanedWindowObjCmd):
+ * library/panedwindow.tcl: changed class from PanedWindow to
+ Panedwindow to not conflict with existing bwidgets, but also to be
+ more regular with other names used in the core.
+
+ * tests/panedwindow.test: added -text foobar to some test buttons
+ to enable correct testing of panedwindow across platforms.
+ [Bug #582370]
+
+ * win/tkWinDialog.c: enabled use of the updated native Windows
+ directory browser (tk_chooseDirectory). This does require
+ shell32.dll v4.71 or greater. [Patch #468139]
+
+ * win/configure:
+ * win/tcl.m4: added shell32 to libs for updated native Windows
+ tk_chooseDirectory dialog.
+
2002-08-06 Donal K. Fellows <fellowsd@cs.man.ac.uk>
* generic/tkPanedWindow.c (RESIZE_PENDING): Separated out flag for
diff --git a/win/configure b/win/configure
index 6e9372d..cf47d3d 100755
--- a/win/configure
+++ b/win/configure
@@ -1186,7 +1186,7 @@ echo "configure:1182: checking compiler flags" >&5
SHLIB_LD=""
SHLIB_LD_LIBS=""
LIBS=""
- LIBS_GUI="-lgdi32 -lcomdlg32 -limm32 -lcomctl32"
+ LIBS_GUI="-lgdi32 -lcomdlg32 -limm32 -lcomctl32 -lshell32"
STLIB_LD='${AR} cr'
RC_OUT=-o
RC_TYPE=
@@ -1327,7 +1327,7 @@ echo "configure:1182: 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 comctl32.lib"
+ LIBS_GUI="gdi32.lib comdlg32.lib imm32.lib comctl32.lib shell32.lib"
RC_OUT=-fo
RC_TYPE=-r
RC_INCLUDE=-i
diff --git a/win/tcl.m4 b/win/tcl.m4
index cd8796a..3a3b43f 100644
--- a/win/tcl.m4
+++ b/win/tcl.m4
@@ -376,7 +376,7 @@ AC_DEFUN(SC_CONFIG_CFLAGS, [
SHLIB_LD=""
SHLIB_LD_LIBS=""
LIBS=""
- LIBS_GUI="-lgdi32 -lcomdlg32 -limm32 -lcomctl32"
+ LIBS_GUI="-lgdi32 -lcomdlg32 -limm32 -lcomctl32 -lshell32"
STLIB_LD='${AR} cr'
RC_OUT=-o
RC_TYPE=
@@ -517,7 +517,7 @@ AC_DEFUN(SC_CONFIG_CFLAGS, [
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 comctl32.lib"
+ LIBS_GUI="gdi32.lib comdlg32.lib imm32.lib comctl32.lib shell32.lib"
RC_OUT=-fo
RC_TYPE=-r
RC_INCLUDE=-i