]> git.eshelyaron.com Git - emacs.git/commitdiff
(coff.h): Don't include on ISC 4.1.
authorEli Zaretskii <eliz@gnu.org>
Fri, 16 Nov 2001 13:46:27 +0000 (13:46 +0000)
committerEli Zaretskii <eliz@gnu.org>
Fri, 16 Nov 2001 13:46:27 +0000 (13:46 +0000)
src/ChangeLog
src/unexec.c

index 38f281d0a14427585215a1a831997c7653ea5cb6..9899ee2b1b40d89d52efda43a79d3d27505c21f5 100644 (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
index fb00c27e54bc20df1fc3c640a7e442467af33bee..b84152aca62986f97cc0f94b81666439d15eedbf 100644 (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.  */