X-Git-Url: http://git.hcoop.net/bpt/emacs.git/blobdiff_plain/7d1589645690ec691e280ec1744532058e72a529..9cf30a30a8315fd59898e78fa8cdd1bf2fa93a78:/src/unexsunos4.c diff --git a/src/unexsunos4.c b/src/unexsunos4.c index 7b97d077fe..bdc2033628 100644 --- a/src/unexsunos4.c +++ b/src/unexsunos4.c @@ -15,7 +15,8 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Emacs; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, Inc., 59 Temple Place - Suite 330, +Boston, MA 02111-1307, USA. */ /* Contributed by Viktor Dukhovni. */ /* @@ -215,10 +216,14 @@ unexec (new_name, a_name, bndry, bss_start, entry) unsigned long daddr = N_DATADDR (ohdr); unsigned long rel, erel; #ifdef SUNOS4 +#ifdef SUNOS4_SHARED_LIBRARIES extern struct link_dynamic _DYNAMIC; /* SunOS4.x's ld_rel is relative to N_TXTADDR. */ - if (_DYNAMIC.ld_version < 2) + if (!ohdr.a_dynamic) + /* This was statically linked. */ + rel = erel = 0; + else if (_DYNAMIC.ld_version < 2) { rel = _DYNAMIC.ld_un.ld_1->ld_rel + N_TXTADDR (ohdr); erel = _DYNAMIC.ld_un.ld_1->ld_hash + N_TXTADDR (ohdr); @@ -228,6 +233,9 @@ unexec (new_name, a_name, bndry, bss_start, entry) rel = _DYNAMIC.ld_un.ld_2->ld_rel + N_TXTADDR (ohdr); erel = _DYNAMIC.ld_un.ld_2->ld_hash + N_TXTADDR (ohdr); } +#else /* not SUNOS4_SHARED_LIBRARIES */ + rel = erel = 0; +#endif /* not SUNOS4_SHARED_LIBRARIES */ #ifdef sparc #define REL_INFO_TYPE struct reloc_info_sparc #else