1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-22 12:33:53 -08:00

(coff.h): Don't include on ISC 4.1.

This commit is contained in:
Eli Zaretskii 2001-11-16 13:46:27 +00:00
parent 530b813d0a
commit 7fc47afa70
2 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,10 @@
2001-11-16 Eli Zaretskii <eliz@is.elta.co.il>
* syswait.h (HAVE_SYS_WAIT_H): Undef for ISC 4.1. Reported by
Andrew Wiseman <a.wiseman@btclick.com>.
* unexec.c (coff.h): Don't include on ISC 4.1.
2001-11-15 Jason Rumney <jasonr@gnu.org>
* w32menu.c (add_menu_item): Make help_echo and radio buttons

View file

@ -171,7 +171,7 @@ pointer looks like an int) but not on all machines.
#ifndef CANNOT_DUMP /* all rest of file! */
#ifdef COFF
#if defined(COFF) && !defined(ISC4_1)
#include <coff.h>
#ifdef MSDOS
#if __DJGPP__ > 1
@ -197,14 +197,14 @@ struct aouthdr
unsigned long data_start;/* base of data used for this file */
};
#endif /* not MSDOS */
#else /* not COFF */
#else /* not COFF and ISC4_1 */
#ifdef COFF_ENCAPSULATE
int need_coff_header = 1;
#include <coff-encap/a.out.encap.h> /* The location might be a poor assumption */
#else /* not COFF_ENCAPSULATE */
#include <a.out.h>
#endif /* not COFF_ENCAPSULATE */
#endif /* not COFF */
#endif /* not COFF and ISC4_1 */
/* Define getpagesize if the system does not.
Note that this may depend on symbols defined in a.out.h. */