diff options
| author | Dave Love | 2000-06-23 17:21:32 +0000 |
|---|---|---|
| committer | Dave Love | 2000-06-23 17:21:32 +0000 |
| commit | 8cf8560b9c27cda5c7c4fe1a5c94e26aaa90ab5b (patch) | |
| tree | 28a0de2d76f46ead26edf91fe91e0096d4fe90d0 /src | |
| parent | 90553aa32b10601c6f69cd3de21ebb9c257c6f58 (diff) | |
| download | emacs-8cf8560b9c27cda5c7c4fe1a5c94e26aaa90ab5b.tar.gz emacs-8cf8560b9c27cda5c7c4fe1a5c94e26aaa90ab5b.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 38 | ||||
| -rw-r--r-- | src/s/osf5-0.h | 4 |
2 files changed, 42 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index c0055cfaf23..006fdedcee5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,41 @@ | |||
| 1 | 2000-06-23 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * emacs.c (setgrp): Undefine before defining. | ||
| 4 | (malloc_warning, set_time_zone_rule, index): Prototype. | ||
| 5 | |||
| 6 | * systime.h (EMACS_GET_TIME) [!GETTIMEOFDAY_ONE_ARGUMENT]: Use | ||
| 7 | HAVE_STRUCT_TIMEZONE. | ||
| 8 | |||
| 9 | * s/osf1.h: Move string.h hack here from alpha.h and make it | ||
| 10 | conditional. | ||
| 11 | (C_SWITCH_SYSTEM): Use _OSF_SOURCE, not -BSD, which clashes with | ||
| 12 | _XOPEN_SOURCE. | ||
| 13 | (WAIT_USE_INT, SYS_SIGLIST_DECLARED, sys_siglist, NSIG): Define. | ||
| 14 | (SOCKLEN_TYPE): Don't define. | ||
| 15 | |||
| 16 | * m/alpha.h: Remove string.h hack. | ||
| 17 | |||
| 18 | * s/osf5-0.h: New file. | ||
| 19 | |||
| 20 | * filelock.c: Use feature tests for fcntl.h, string.h. Don't | ||
| 21 | include time.h, done by systime.h. | ||
| 22 | [__FreeBSD__]: Remove redundant includes. | ||
| 23 | |||
| 24 | * callproc.c: (setpgrp): Undefine before defining. | ||
| 25 | (delete_temp_file): Return Qnil to avoid warning. | ||
| 26 | |||
| 27 | * config.in (HAVE_TERM_H, HAVE_STRUCT_TIMEZONE): Add. | ||
| 28 | |||
| 29 | * xfaces.c: Include fontset.h dependent on HAVE_WINDOW_SYSTEM, not | ||
| 30 | HAVE_X_WINDOWS. | ||
| 31 | |||
| 32 | * fontset.h (free_face_fontset): Renamed from fs_free_face_fontset. | ||
| 33 | |||
| 34 | * composite.h (compose_text): Declare. | ||
| 35 | |||
| 36 | * xterm.c: Don't include sys/types.h unconditionally. Don't | ||
| 37 | protect its inclusion with !USG (following xmenu.c). | ||
| 38 | |||
| 1 | 2000-06-23 Gerd Moellmann <gerd@gnu.org> | 39 | 2000-06-23 Gerd Moellmann <gerd@gnu.org> |
| 2 | 40 | ||
| 3 | * xfns.c (x_create_tip_frame): Initialize frame's colors like | 41 | * xfns.c (x_create_tip_frame): Initialize frame's colors like |
diff --git a/src/s/osf5-0.h b/src/s/osf5-0.h new file mode 100644 index 00000000000..1bab7e8760b --- /dev/null +++ b/src/s/osf5-0.h | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | #define OSF5 | ||
| 2 | #include "osf1.h" | ||
| 3 | /* We have missing/inconsistent prototypes, at least. */ | ||
| 4 | #define INHIBIT_X11R6_XIM | ||