contrib/dev86/bin86-x86_64.patch
John Vogel 108fe1b000 dev86: new maintainer. fix mandir. add bin86 fix.
Update mandir to usr/share/man.
Remove unnecessary copt patch. Was fixed in v0.16.20.
Add core/bin86 patch for ld86. It could be used by the build time
 bcc (ncc), so incorporate it here.
2018-02-17 13:38:55 -05:00

15 lines
435 B
Diff

diff -urN bin86-0.16.14-orig/ld/x86_aout.h bin86-0.16.14/ld/x86_aout.h
--- bin86-0.16.14-orig/ld/x86_aout.h 2004-11-07 20:07:31.506442000 +0100
+++ bin86-0.16.14/ld/x86_aout.h 2004-11-07 20:07:41.106982496 +0100
@@ -12,6 +12,9 @@
#if defined(i386) || defined(__BCC__) || defined(MSDOS)
typedef long Long;
#define __OUT_OK 1
+#elif defined(__x86_64__)
+typedef int Long;
+#define __OUT_OK 1
#else
typedef char Long[4];
#endif