Mercurial > emacs
annotate src/s/bsdos4.h @ 53249:97802d013c5c
(gdba, gdb-assembler-mode): Call the mode "Machine" as
a mode called "Assembler" already exists.
(gdb-use-colon-colon-notation, gdb-show-changed-values): New
options.
(gud-watch): Use format option. Remove font properties from
string.
(gdb-var-create-handler, gdb-var-list-children-handler): Don't
bother about properties as there are none.
(gdb-var-create-handler, gdb-var-list-children-handler)
(gdb-var-update-handler): Call gdb-var-evaluate-expression-handler
with two arguments.
(gdb-var-evaluate-expression-handler, gdb-post-prompt): Let
speedbar show value changes with a different font.
(gdb-edit-value): New defun.
(gdb-clear-partial-output, gdb-clear-inferior-io)
(def-gdb-auto-update-handler): Use erase-buffer.
(gdb-frame-handler): Display watch expressions in
FUNCTION::VARIABLE format if required.
author | Nick Roberts <nickrob@snap.net.nz> |
---|---|
date | Tue, 23 Dec 2003 20:31:21 +0000 |
parents | 695cf19ef79e |
children | 375f2633d815 |
rev | line source |
---|---|
23718 | 1 /* s/ file for BSDI BSD/OS 4.0 system. */ |
2 | |
3 #include "bsdos3.h" | |
4 | |
25895
1f372b20fb99
[HAVE_LIBNCURSES]: Define TERMINFO and LIBS_TERMCAP.
Gerd Moellmann <gerd@gnu.org>
parents:
23718
diff
changeset
|
5 /* BSD/OS 4.1 and later have ncurses */ |
1f372b20fb99
[HAVE_LIBNCURSES]: Define TERMINFO and LIBS_TERMCAP.
Gerd Moellmann <gerd@gnu.org>
parents:
23718
diff
changeset
|
6 #ifdef HAVE_LIBNCURSES |
1f372b20fb99
[HAVE_LIBNCURSES]: Define TERMINFO and LIBS_TERMCAP.
Gerd Moellmann <gerd@gnu.org>
parents:
23718
diff
changeset
|
7 #define TERMINFO |
1f372b20fb99
[HAVE_LIBNCURSES]: Define TERMINFO and LIBS_TERMCAP.
Gerd Moellmann <gerd@gnu.org>
parents:
23718
diff
changeset
|
8 #define LIBS_TERMCAP -lncurses |
1f372b20fb99
[HAVE_LIBNCURSES]: Define TERMINFO and LIBS_TERMCAP.
Gerd Moellmann <gerd@gnu.org>
parents:
23718
diff
changeset
|
9 #endif /* HAVE_LIBNCURSES */ |
1f372b20fb99
[HAVE_LIBNCURSES]: Define TERMINFO and LIBS_TERMCAP.
Gerd Moellmann <gerd@gnu.org>
parents:
23718
diff
changeset
|
10 |
23718 | 11 /* copied from freebsd.h */ |
12 #ifdef __ELF__ | |
13 | |
14 #define LD_SWITCH_SYSTEM | |
15 #undef START_FILES | |
16 #define START_FILES \ | |
17 pre-crt0.o /usr/lib/crt1.o /usr/lib/crti.o /usr/lib/crtbegin.o | |
18 #define UNEXEC unexelf.o | |
19 #define LIB_STANDARD -lgcc -lc -lgcc /usr/lib/crtend.o /usr/lib/crtn.o | |
20 #undef LIB_GCC | |
21 #define LIB_GCC | |
22 | |
23 #endif /* not __ELF__ */ | |
52401 | 24 |
25 /* arch-tag: 7659632a-a879-4153-bb8b-3765a1463ca1 | |
26 (do not change this comment) */ |