* config/rs6000.mh: Get rid of -Dfd_set=int crock.

This is defined in defs.h if necessary.
	* vx-share/vxWorks.h:  Remove #defs of min and max.
	* vx-share/xdr_ld.c, vx-share/xdr_ptrace.c,
	vx-share/xdr_rdb.c:  include defs.h.
This commit is contained in:
Stu Grossman 1993-03-16 18:15:25 +00:00
parent a2df03aa68
commit e829d98374
6 changed files with 11 additions and 12 deletions

View File

@ -1,3 +1,11 @@
Tue Mar 16 10:09:05 1993 Stu Grossman (grossman@cygnus.com)
* config/rs6000.mh: Get rid of -Dfd_set=int crock.
This is defined in defs.h if necessary.
* vx-share/vxWorks.h: Remove #defs of min and max.
* vx-share/xdr_ld.c, vx-share/xdr_ptrace.c,
vx-share/xdr_rdb.c: include defs.h.
Fri Mar 12 09:33:23 1993 Jim Kingdon (kingdon@cygnus.com)
* xcoffread.c (retrieve_tracebackinfo): Move assignment out

View File

@ -26,14 +26,6 @@ NATDEPFILES= fork-child.o infptrace.o inftarg.o corelow.o rs6000-nat.o xcoffread
# We have no idea who our current compiler is though, so we skip it.
# MH_CFLAGS = -bnodelcsect
# The IBM version of /usr/include/rpc/rpc.h has a bug -- it says
# `extern fd_set svc_fdset;' without ever defining the type fd_set.
# Unfortunately this occurs in the vx-share code, which is not configured
# like the rest of GDB (e.g. it doesn't include "defs.h").
# We circumvent this bug by #define-ing fd_set here, but undefining it in
# the xm-rs6000.h file before ordinary modules try to use it. FIXME, IBM!
MH_CFLAGS=-Dfd_set=int
# Because of shared libraries, we risk ending up with *two*
# incompatible versions of malloc if we use GNU malloc ...
MMALLOC_LIB =

View File

@ -161,10 +161,6 @@ modification history
#define FOREVER for (;;)
#define max(x, y) (((x) < (y)) ? (y) : (x))
#define min(x, y) (((x) < (y)) ? (x) : (y))
/* storage class specifier definitions */
#define FAST register

View File

@ -17,6 +17,7 @@ for object files that are downloaded to VxWorks. They are used by
remote debuggers that use RPC (such as dbxWorks and vxGdb).
*/
#include "defs.h"
#include "vxWorks.h"
#include "rpc/rpc.h"
#include "xdr_ld.h"

View File

@ -13,6 +13,7 @@ modification history
01a,05jun90,llk extracted from xdr_ptrace.h, version 01c.
*/
#include "defs.h"
#include "vxWorks.h"
#include <rpc/rpc.h>
#include "xdr_ptrace.h"

View File

@ -16,6 +16,7 @@ This module contains the eXternal Data Representation (XDR) routines
for the RDB interface for VxWorks.
*/
#include "defs.h"
#include "vxWorks.h"
#include <rpc/rpc.h>
#include "xdr_rdb.h"