1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/editors/emacs20-dl/files/patch-ai
Shigeyuki Fukushima b47bf4289c Update to 20.7.
PR:		ports/19692
Submitted by:	OKAZAKI Tetsurou <okazaki@be.to>
2000-07-05 14:33:21 +00:00

18 lines
377 B
Plaintext

--- src/unexelf.c.orig Mon May 15 17:14:02 2000
+++ src/unexelf.c Sat Jul 1 18:17:15 2000
@@ -506,6 +506,14 @@
# include <link.h> /* get ElfW etc */
#endif
+#ifdef __FreeBSD__
+# ifdef __STDC__
+# define ElfW(type) Elf_##type
+# else
+# define ElfW(type) Elf_/**/type
+# endif
+#endif
+
#ifndef ElfW
# ifdef __STDC__
# define ElfBitsW(bits, type) Elf##bits##_##type