diff options
author | cgd <cgd@pkgsrc.org> | 1999-06-12 22:39:27 +0000 |
---|---|---|
committer | cgd <cgd@pkgsrc.org> | 1999-06-12 22:39:27 +0000 |
commit | df5e13309570bd0587cb05380beb2b44caeccb39 (patch) | |
tree | 4b350f63164f4a642d5c34bee290e56156042367 /editors/emacs | |
parent | 71d58456f5b726ffac8c19eeec3243c00577288a (diff) | |
download | pkgsrc-df5e13309570bd0587cb05380beb2b44caeccb39.tar.gz |
ElfW, not ElfW, in the new code being added by this patch. lets this
patched code compile on alpha again!
Diffstat (limited to 'editors/emacs')
-rw-r--r-- | editors/emacs/patches/patch-az | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/emacs/patches/patch-az b/editors/emacs/patches/patch-az index 6750a2e6955..db7af970bba 100644 --- a/editors/emacs/patches/patch-az +++ b/editors/emacs/patches/patch-az @@ -1,4 +1,4 @@ -$NetBSD: patch-az,v 1.3 1999/06/04 04:15:44 mycroft Exp $ +$NetBSD: patch-az,v 1.4 1999/06/12 22:39:27 cgd Exp $ --- src/unexelf.c.orig Sun Aug 9 22:33:12 1998 +++ src/unexelf.c Thu Jun 3 23:31:50 1999 @@ -45,7 +45,7 @@ $NetBSD: patch-az,v 1.3 1999/06/04 04:15:44 mycroft Exp $ +void +relocate_ecoff_symhdr(symhdr, diff) + HDRR *symhdr; -+ Elfw(Word) diff; ++ ElfW(Word) diff; +{ + symhdr->cbLineOffset += diff; + symhdr->cbDnOffset += diff; @@ -65,7 +65,7 @@ $NetBSD: patch-az,v 1.3 1999/06/04 04:15:44 mycroft Exp $ +void +relocate_elf_proghdr(p, diff) + HDRR *symhdr; -+ Elfw(Word) diff; ++ ElfW(Word) diff; +{ + phdr->sh_name += diff; + phdr->sh_type += diff; |