diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-02 10:29:18 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-02 10:29:18 +0000 |
commit | adf2b211f7bdf8c16c5a40c16d2541f32c80136f (patch) | |
tree | 5e1b54a126f562774b4d533c4f633d6008b81b5d /textproc/coco/files/patch-src_unexelf.c | |
parent | Remove non staged ports without pending PR from s* (diff) |
Remove non staged ports without pending PR from textproc and vietnamese
Notes
Notes:
svn path=/head/; revision=366981
Diffstat (limited to 'textproc/coco/files/patch-src_unexelf.c')
-rw-r--r-- | textproc/coco/files/patch-src_unexelf.c | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/textproc/coco/files/patch-src_unexelf.c b/textproc/coco/files/patch-src_unexelf.c deleted file mode 100644 index 8f03c091bbab..000000000000 --- a/textproc/coco/files/patch-src_unexelf.c +++ /dev/null @@ -1,40 +0,0 @@ -diff -rBbc src/unexelf.c src/unexelf.c -*** src/unexelf.c Tue Aug 18 14:48:41 1998 ---- src/unexelf.c Sat Dec 29 03:49:32 2001 -*************** -*** 678,684 **** - if (n < 0) - fatal ("Couldn't find segment next to .bss in %s\n", old_name, 0); - -! NEW_PROGRAM_H (n).p_filesz += new_data2_size; - NEW_PROGRAM_H (n).p_memsz = NEW_PROGRAM_H (n).p_filesz; - - #if 0 /* Maybe allow section after data2 - does this ever happen? */ ---- 678,685 ---- - if (n < 0) - fatal ("Couldn't find segment next to .bss in %s\n", old_name, 0); - -! /* NEW_PROGRAM_H (n).p_filesz += new_data2_size; */ -! NEW_PROGRAM_H (n).p_filesz = new_bss_addr - NEW_PROGRAM_H (n).p_vaddr; /* From emacs 20.3 */ - NEW_PROGRAM_H (n).p_memsz = NEW_PROGRAM_H (n).p_filesz; - - #if 0 /* Maybe allow section after data2 - does this ever happen? */ -*************** -*** 849,855 **** - - for (; symp < symendp; symp ++) - if (strcmp ((char *) (symnames + symp->st_name), "_end") == 0 -! || strcmp ((char *) (symnames + symp->st_name), "_edata") == 0) - memcpy (&symp->st_value, &new_bss_addr, sizeof (new_bss_addr)); - } - ---- 850,858 ---- - - for (; symp < symendp; symp ++) - if (strcmp ((char *) (symnames + symp->st_name), "_end") == 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)); - } - |