summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorwolfsuit <wolfsuit>2005-03-09 19:40:50 (GMT)
committerwolfsuit <wolfsuit>2005-03-09 19:40:50 (GMT)
commit88040acda86230fe9cc4ebfef29321940976db05 (patch)
tree9d44f0e9e176ad5cda43cfb0cf279dfaf1d94da8 /ChangeLog
parent72d7d96374d5a0dd032e725c1bd1279ca115c218 (diff)
downloadtk-88040acda86230fe9cc4ebfef29321940976db05.zip
tk-88040acda86230fe9cc4ebfef29321940976db05.tar.gz
tk-88040acda86230fe9cc4ebfef29321940976db05.tar.bz2
Add a hack to work around some issues with remote debugging with Xcode. Xcode requires
that stdin & stdout be closed or you won't be able to interrupt the running program. So I added a check for XCNOSTDIN environment variable in the startup, and I force them closed if it is set. With that, remote debugging works pretty well.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index ee63644..ba768bd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-03-09 Jim Ingham <jingham@apple.com>
+
+ * macosx/tkMacOSXInit.c (TkpInit): Check to see if the environment
+ variable XCNOSTDIN is set, and if so, close stdin & stdout. This
+ is necessary to make remote debugging under Xcode work properly.
+
2005-03-08 Jeff Hobbs <jeffh@ActiveState.com>
* win/tkWinWm.c (WinSetIcon): fix GCLP_ICONSM -> GCLP_HICONSM.