diff options
author | Alan Modra <amodra@gmail.com> | 2009-10-02 14:40:41 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2009-10-02 14:40:41 +0000 |
commit | 4a056f1472ee3ce5a2dde5df46a0faf6e794b114 (patch) | |
tree | 77b335db9177e8f660d8be88ad68b42fb9aab96b /include/aout/aout64.h | |
parent | 38462edfa268c245acf1f53f65cf3e4c0772e2cd (diff) | |
download | gdb-4a056f1472ee3ce5a2dde5df46a0faf6e794b114.zip gdb-4a056f1472ee3ce5a2dde5df46a0faf6e794b114.tar.gz gdb-4a056f1472ee3ce5a2dde5df46a0faf6e794b114.tar.bz2 |
include/aout/
* aout64.h (N_SHARED_LIB): Define as zero if not already defined.
* sun4.h (N_SHARED_LIB): Define.
* hp300hpux.h (N_SHARED_LIB): Don't define.
bfd/
* aout-cris.c (N_SHARED_LIB): Don't define.
* hp300bsd.c (N_SHARED_LIB): Don't define.
* i386bsd.c (N_SHARED_LIB): Don't define.
* i386linux.c (N_SHARED_LIB): Don't define.
* i386lynx.c (N_SHARED_LIB): Don't define.
* m68klinux.c (N_SHARED_LIB): Don't define.
* m88kmach3.c (N_SHARED_LIB): Don't define.
* mipsbsd.c (N_SHARED_LIB): Don't define.
* newsos3.c (N_SHARED_LIB): Don't define.
* pc532-mach.c (N_SHARED_LIB): Don't define.
* pdp11.c (N_SHARED_LIB): Don't define.
* sparclinux.c (N_SHARED_LIB): Don't define.
* vaxbsd.c (N_SHARED_LIB): Don't define.
Diffstat (limited to 'include/aout/aout64.h')
-rw-r--r-- | include/aout/aout64.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/aout/aout64.h b/include/aout/aout64.h index 2e289b3..f2330ca 100644 --- a/include/aout/aout64.h +++ b/include/aout/aout64.h @@ -1,6 +1,6 @@ /* `a.out' object-file definitions, including extensions to 64-bit fields - Copyright 1999, 2000, 2001, 2003 Free Software Foundation, Inc. + Copyright 1999, 2000, 2001, 2003, 2009 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -141,11 +141,7 @@ struct external_exec /* Sun shared libraries, not linux. This macro is only relevant for ZMAGIC files. */ #ifndef N_SHARED_LIB -#if defined (TEXT_START_ADDR) && TEXT_START_ADDR == 0 #define N_SHARED_LIB(x) (0) -#else -#define N_SHARED_LIB(x) ((x).a_entry < TEXT_START_ADDR) -#endif #endif /* Returning 0 not TEXT_START_ADDR for OMAGIC and NMAGIC is based on |