# HG changeset patch # User youngs # Date 1128914185 0 # Node ID 4762918e17fb21eea06ca893d71beb778a31b24e # Parent 66ad307745678cfa6a9746c2429f9eafce4718a7 [xemacs-hg @ 2005-10-10 03:16:22 by youngs] 2005-10-10 Andrey Slusar * unexelf.c: define `Elfw(type)' for FreeBSD alpha and all _LP64 archs. From Dejan Lesjak diff -r 66ad30774567 -r 4762918e17fb src/ChangeLog --- a/src/ChangeLog Mon Oct 10 02:45:32 2005 +0000 +++ b/src/ChangeLog Mon Oct 10 03:16:25 2005 +0000 @@ -1,3 +1,9 @@ +2005-10-10 Andrey Slusar + + * unexelf.c: define `Elfw(type)' for FreeBSD alpha and all _LP64 + archs. + From Dejan Lesjak + 2005-10-04 Stephen J. Turnbull * Makefile.in.in (mule_canna_objs): Use correct name of .o. diff -r 66ad30774567 -r 4762918e17fb src/unexelf.c --- a/src/unexelf.c Mon Oct 10 02:45:32 2005 +0000 +++ b/src/unexelf.c Mon Oct 10 03:16:25 2005 +0000 @@ -478,7 +478,7 @@ # include #endif -#if defined(__FreeBSD__) && (defined(__alpha__) || defined(__amd64__)) +#if defined(__FreeBSD__) && (defined(__alpha__) || defined(_LP64)) # ifdef __STDC__ # define ElfW(type) Elf64_##type # else