diff options
author | Keith Seitz <keiths@redhat.com> | 2006-08-25 15:55:23 +0000 |
---|---|---|
committer | Keith Seitz <keiths@redhat.com> | 2006-08-25 15:55:23 +0000 |
commit | 9b4a9ffc3fc2b098fcae1c9677a779161e7f6201 (patch) | |
tree | 04566e9e283b0874f7e88120e2b89df72bf6e836 /gdb/gdbtk | |
parent | 1a912d4c206b12b6153f863da6b98a7022ed31ba (diff) | |
download | gdb-9b4a9ffc3fc2b098fcae1c9677a779161e7f6201.tar.gz |
* library/prefs.tcl (pref_set_defaults): Disable IPC, gdb/ipc/enabled,
by default.
Diffstat (limited to 'gdb/gdbtk')
-rw-r--r-- | gdb/gdbtk/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/gdbtk/library/prefs.tcl | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/gdbtk/ChangeLog b/gdb/gdbtk/ChangeLog index 199797ac349..0bca9a23a89 100644 --- a/gdb/gdbtk/ChangeLog +++ b/gdb/gdbtk/ChangeLog @@ -1,3 +1,8 @@ +2006-08-25 Keith Seitz <keiths@redhat.com> + + * library/prefs.tcl (pref_set_defaults): Disable IPC, gdb/ipc/enabled, + by default. + 2006-06-26 Keith Seitz <keiths@redhat.com> * library/srcwin.itb (_build_win): Add invisible frame to workaround diff --git a/gdb/gdbtk/library/prefs.tcl b/gdb/gdbtk/library/prefs.tcl index 7bd0885682c..a0ef466c198 100644 --- a/gdb/gdbtk/library/prefs.tcl +++ b/gdb/gdbtk/library/prefs.tcl @@ -440,7 +440,7 @@ proc pref_set_defaults {} { # IPC prefs # set prefs based on GDB version? #set vers [lindex [split [lindex [split [gdb_cmd "show version"]] end-1 ] \"] 1] - pref define gdb/ipc/enabled 1 + pref define gdb/ipc/enabled 0 pref define gdb/ipc/port 9909 pref define gdb/ipc/stop_button 1 pref define gdb/ipc/step_button 1 |