1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-21 04:06:46 +00:00
freebsd-ports/devel/bin86/files/patch-ld_x86_aout_h
Shaun Amott 77f7bf2248 Add amd64 support.
PR:		ports/125614
Submitted by:	Pedro F. Giffuni <pfgshield-freebsd@yahoo.com>
2008-11-14 18:50:29 +00:00

13 lines
322 B
Plaintext

--- ld/x86_aout.h.orig 2008-07-14 15:03:10.000000000 -0500
+++ ld/x86_aout.h 2008-07-14 15:04:55.000000000 -0500
@@ -12,6 +12,9 @@
#if defined(i386) || defined(__BCC__) || defined(MSDOS)
typedef long Long;
#define __OUT_OK 1
+#elif __amd64__
+typedef int Long;
+#define __OUT_OK 1
#else
typedef char Long[4];
#endif