diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2008-05-31 23:01:15 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2008-05-31 23:01:15 +0000 |
commit | a54fe1ca9c33931d7c4381a84ee11454f9831c08 (patch) | |
tree | 16cc7f849128603b27ba13f7bdb8ae11e1eadd30 /devel/gdb66/files/patch-unified | |
parent | - Update to 1.11.3 (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_5_EOL'.5-eol
Diffstat (limited to 'devel/gdb66/files/patch-unified')
-rw-r--r-- | devel/gdb66/files/patch-unified | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/devel/gdb66/files/patch-unified b/devel/gdb66/files/patch-unified deleted file mode 100644 index 19ef04213ee0..000000000000 --- a/devel/gdb66/files/patch-unified +++ /dev/null @@ -1,25 +0,0 @@ ---- gdb/gdb.c Thu Feb 13 13:07:24 2003 -+++ gdb/gdb.c Wed May 17 00:24:39 2006 -@@ -23,4 +23,5 @@ - #include "gdb_string.h" - #include "interps.h" -+#include <libgen.h> - - int -@@ -31,6 +32,14 @@ - args.argc = argc; - args.argv = argv; -- args.use_windows = 0; -- args.interpreter_p = INTERP_CONSOLE; -+ if (strncmp(basename(argv[0]), "insight", 7) == 0) { -+ args.use_windows = 1; -+ args.interpreter_p = "insight"; -+ } else if (strncmp(basename(argv[0]), "gdbtui", 6) == 0) { -+ args.use_windows = 0; -+ args.interpreter_p = INTERP_TUI; -+ } else { -+ args.use_windows = 0; -+ args.interpreter_p = INTERP_CONSOLE; -+ } - return gdb_main (&args); - } |