From: Jim Kingdon Date: Wed, 1 Sep 1993 19:28:53 +0000 (+0000) Subject: * libaout.h, netbsd386.c: Change M_I386 to M_386_NETBSD. M_I386 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f6fcc0826211f0bd394b0f743f69afa03323fbe8;p=binutils-gdb.git * libaout.h, netbsd386.c: Change M_I386 to M_386_NETBSD. M_I386 is an SCO pre-define. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 8be38d7db52..fc028d5965a 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +Wed Sep 1 14:23:32 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + + * libaout.h, netbsd386.c: Change M_I386 to M_386_NETBSD. M_I386 + is an SCO pre-define. + Tue Aug 31 12:50:19 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com) * nlmcode.h (nlm_object_p): Set HAS_SYMS if there are external diff --git a/bfd/netbsd386.c b/bfd/netbsd386.c index 0cf5193b9a2..7a42700e66b 100644 --- a/bfd/netbsd386.c +++ b/bfd/netbsd386.c @@ -30,7 +30,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #define SEGMENT_SIZE PAGE_SIZE #define DEFAULT_ARCH bfd_arch_i386 -#define MACHTYPE_OK(mtype) ((mtype) == M_386 || (mtype) == M_I386 || (mtype) == M_UNKNOWN) +#define MACHTYPE_OK(mtype) ((mtype) == M_386 || (mtype) == M_386_NETBSD || (mtype) == M_UNKNOWN) #define MY(OP) CAT(netbsd386_,OP) /* This needs to start with a.out so GDB knows it is an a.out variant. */