diff options
author | Steve Price <steve@FreeBSD.org> | 1998-10-10 04:37:24 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1998-10-10 04:37:24 +0000 |
commit | 686c7615172bcb8537ed194199e67349eccdb0f0 (patch) | |
tree | 85860fdcf7fad42c3db592ed9b0b3ff5b9544b4b /editors/emacs19/files/patch-ae | |
parent | Update to version 19981007. (diff) |
Convert to ELF.
PR: 8090
Submitted by: Satoshi Taoka <taoka@infonets.hiroshima-u.ac.jp>
Diffstat (limited to 'editors/emacs19/files/patch-ae')
-rw-r--r-- | editors/emacs19/files/patch-ae | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/editors/emacs19/files/patch-ae b/editors/emacs19/files/patch-ae new file mode 100644 index 000000000000..09b06161ccc2 --- /dev/null +++ b/editors/emacs19/files/patch-ae @@ -0,0 +1,12 @@ +--- orig/unexelf.c Wed Jul 17 07:39:03 1996 ++++ src/unexelf.c Wed Sep 30 09:35:47 1998 +@@ -845,7 +845,9 @@ + + for (; symp < symendp; symp ++) + if (strcmp ((char *) (symnames + symp->st_name), "_end") == 0 +- || strcmp ((char *) (symnames + symp->st_name), "_edata") == 0) ++ || strcmp ((char *) (symnames + symp->st_name), "end") == 0 ++ || strcmp ((char *) (symnames + symp->st_name), "_edata") == 0 ++ || strcmp ((char *) (symnames + symp->st_name), "edata") == 0) + memcpy (&symp->st_value, &new_bss_addr, sizeof (new_bss_addr)); + } |