Mercurial > emacs
annotate src/s/bsdos4.h @ 51198:f8e097cae353
Make (several) trivial substitutions for renamed and
new macros in dispextern.h, frame.h and window.h.
(x_draw_glyph_string_box): Adapt to per-window fringes and
scroll-bars.
(glyph_rect): Use window coordinates returned from
window_from_coordinates rather than frame_to_window_pixel_xy.
(XTset_vertical_scroll_bar): Adapt to per-window fringes and
scroll-bars.
(x_clip_to_row): Remove superfluous whole_line_p arg and code
(fringes are now inside margins, i.e. always in the clipping area).
All callers changed.
(x_new_font): Set FRAME_COLUMN_WIDTH and FRAME_LINE_HEIGHT
directly, then call compute_fringe_widths. Don't call
frame_update_line_height.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Sat, 24 May 2003 22:00:34 +0000 |
parents | 1f372b20fb99 |
children | 695cf19ef79e |
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__ */ |