b730789521
* Convert gcc48 to simple meta-pkg * Potentially fix non-NetBSD packaging * Fix gcc48-libs/gcc48-cc++ build under OpenBSD/amd64 5.5 * Enable graphite option, from wip/gcc48snapshot via Xiyue Deng * Tweak nls option Changelog: GCC 4.8.3 This is the [35]list of problem reports (PRs) from GCC's bug tracking system that are known to be fixed in the 4.8.3 release. This list might not be complete (that is, it is possible that some PRs that have been fixed are not listed here). Support for the new powerpc64le-linux platform has been added. It defaults to generating code that conforms to the ELFV2
22 lines
766 B
C
22 lines
766 B
C
$NetBSD: patch-boehm-gc_mach__dep.c,v 1.1 2014/05/31 13:06:25 ryoon Exp $
|
|
|
|
--- boehm-gc/mach_dep.c.orig 2006-01-25 03:03:14.000000000 +0000
|
|
+++ boehm-gc/mach_dep.c
|
|
@@ -27,7 +27,7 @@
|
|
# endif
|
|
# endif
|
|
|
|
-#if defined(RS6000) || defined(POWERPC)
|
|
+#if (defined(RS6000) || defined(POWERPC)) && !defined(OPENBSD)
|
|
# include <ucontext.h>
|
|
#endif
|
|
|
|
@@ -417,7 +417,7 @@ ptr_t arg;
|
|
/* the stack. */
|
|
__builtin_unwind_init();
|
|
# else /* !HAVE_BUILTIN_UNWIND_INIT */
|
|
-# if defined(RS6000) || defined(POWERPC)
|
|
+# if (defined(RS6000) || defined(POWERPC)) && !defined(OPENBSD)
|
|
/* FIXME: RS6000 means AIX. */
|
|
/* This should probably be used in all Posix/non-gcc */
|
|
/* settings. We defer that change to minimize risk. */
|