summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordas <das>2008-06-12 06:36:03 (GMT)
committerdas <das>2008-06-12 06:36:03 (GMT)
commit039a896f74fccae55207cb8052b01ca9e039ec99 (patch)
tree27a6046e27c2103d99139589c6465be3553bad8d
parent47fb852c7c3e10d76e61eb41c21c80ca5a9225c3 (diff)
downloadtk-039a896f74fccae55207cb8052b01ca9e039ec99.zip
tk-039a896f74fccae55207cb8052b01ca9e039ec99.tar.gz
tk-039a896f74fccae55207cb8052b01ca9e039ec99.tar.bz2
* macosx/tkMacOSXXStubs.c (Tk_ResetUserInactiveTime): use UsrActivity
instead of OverallAct (which may be ignored in some circumstances).
-rw-r--r--ChangeLog16
-rw-r--r--macosx/tkMacOSXXStubs.c4
2 files changed, 18 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 66abae8..3b44c47 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,19 @@
+2008-06-12 Daniel Steffen <das@users.sourceforge.net>
+
+ * unix/tcl.m4 (SunOS-5.11): fix 64bit amd64 support with gcc & Sun cc.
+ * unix/configure: autoconf-2.59
+
+ * macosx/tkMacOSXXStubs.c (Tk_ResetUserInactiveTime): use UsrActivity
+ instead of OverallAct (which may be ignored in some circumstances).
+
+ * macosx/Wish.xcodeproj/project.pbxproj: add debug configs for 64bit,
+ * macosx/Wish.xcodeproj/default.pbxuser: with gcov, and with
+ corefoundation disabled; updates & cleanup for Xcode 3.1 and for
+ Leopard; sync with Tcl.xcodeproj.
+ * macosx/Wish.xcode/project.pbxproj: sync Wish.xcodeproj changes.
+ * macosx/Wish.xcode/default.pbxuser:
+ * macosx/README: document new build configs.
+
2008-06-10 Joe English <jenglish@users.sourceforge.net>
* unix/tkUnixKey.c: tkUnixKey.c: Use Xutf8LookupString if available
diff --git a/macosx/tkMacOSXXStubs.c b/macosx/tkMacOSXXStubs.c
index f7f0f8a..ff25774 100644
--- a/macosx/tkMacOSXXStubs.c
+++ b/macosx/tkMacOSXXStubs.c
@@ -13,7 +13,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkMacOSXXStubs.c,v 1.25.2.1 2008/05/03 21:09:16 das Exp $
+ * RCS: @(#) $Id: tkMacOSXXStubs.c,v 1.25.2.2 2008/06/12 06:36:07 das Exp $
*/
#include "tkMacOSXPrivate.h"
@@ -1306,5 +1306,5 @@ void
Tk_ResetUserInactiveTime(
Display *dpy)
{
- UpdateSystemActivity(OverallAct);
+ UpdateSystemActivity(UsrActivity);
}