Fix duplicate SIG_SYSLIST warnings on PowerPC Linux
authorMichael Meissner <meissner@cygnus.com>
Wed, 29 Oct 1997 22:00:14 +0000 (22:00 +0000)
committerMichael Meissner <meissner@gcc.gnu.org>
Wed, 29 Oct 1997 22:00:14 +0000 (22:00 +0000)
From-SVN: r16230

gcc/ChangeLog
gcc/config/rs6000/xm-sysv4.h

index 215648c2a013823627b89a2a0653a56543004cfa..3dd3e2b6404605fd3ca1656fa580f006c119e640 100644 (file)
@@ -1,3 +1,8 @@
+Wed Oct 29 16:57:19 1997  Michael Meissner  <meissner@cygnus.com>
+
+       * rs6000/xm-sysv4.h: Include xm-linux.h instead of xm-svr4.h if we
+       are running on PowerPC Linux.
+
 Wed Oct 29 13:10:11 1997  Gavin Koch  <gavin@cygnus.com>
 
        * config/mips/elf64.h (PREFERRED_DEBUGGING_TYPE): Only define
index bc8f4bf299b9c387f17c6858a2c4f18ad8bf542e..7184d8892dbc032d2b307f6aab5ab237b2845968 100644 (file)
@@ -46,7 +46,11 @@ Boston, MA 02111-1307, USA.  */
 #define SUCCESS_EXIT_CODE 0
 #define FATAL_EXIT_CODE 33
 
+#ifdef __linux__
+#include "xm-linux.h"
+#else
 #include "xm-svr4.h"
+#endif
 
 /* if not compiled with GNU C, use the C alloca and use only int bitfields. */
 #ifndef __GNUC__