pkgsrc-ng/lang/gcc49/patches/patch-libgo_runtime_proc.c
2016-01-21 23:40:00 +01:00

18 lines
388 B
C

$NetBSD: patch-libgo_runtime_proc.c,v 1.1 2014/09/04 18:43:11 jperkin Exp $
SunOS libelf does not support largefile.
--- libgo/runtime/proc.c.orig 2014-05-27 22:01:08.000000000 +0000
+++ libgo/runtime/proc.c
@@ -11,6 +11,10 @@
#include "config.h"
#ifdef HAVE_DL_ITERATE_PHDR
+#ifdef __sun
+#undef _FILE_OFFSET_BITS
+#define _FILE_OFFSET_BITS 32
+#endif
#include <link.h>
#endif