Fix duplicate SIG_SYSLIST warnings on PowerPC Linux

From-SVN: r16230
This commit is contained in:
Michael Meissner 1997-10-29 22:00:14 +00:00 committed by Michael Meissner
parent feecabdf83
commit 05ef204d6d
2 changed files with 9 additions and 0 deletions

View 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

View 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__