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
24 lines
889 B
C
24 lines
889 B
C
$NetBSD: patch-boehm-gc_include_gc__config__macros.h,v 1.1 2014/05/31 13:06:25 ryoon Exp $
|
|
|
|
--- boehm-gc/include/gc_config_macros.h.orig 2012-11-04 22:56:02.000000000 +0000
|
|
+++ boehm-gc/include/gc_config_macros.h
|
|
@@ -22,7 +22,7 @@
|
|
defined(GC_GNU_THREADS) || \
|
|
defined(GC_HPUX_THREADS) || defined(GC_OSF1_THREADS) || \
|
|
defined(GC_DGUX386_THREADS) || defined(GC_DARWIN_THREADS) || \
|
|
- defined(GC_AIX_THREADS) || \
|
|
+ defined(GC_AIX_THREADS) || defined(GC_OPENBSD_THREADS) || \
|
|
(defined(GC_WIN32_THREADS) && defined(__CYGWIN32__))
|
|
# define GC_PTHREADS
|
|
# endif
|
|
@@ -57,6 +57,10 @@
|
|
# define GC_FREEBSD_THREADS
|
|
# define GC_PTHREADS
|
|
# endif
|
|
+# if !defined(GC_PTHREADS) && defined(__OpenBSD__)
|
|
+# define GC_OPENBSD_THREADS
|
|
+# define GC_PTHREADS
|
|
+# endif
|
|
# if defined(DGUX) && (defined(i386) || defined(__i386__))
|
|
# define GC_DGUX386_THREADS
|
|
# define GC_PTHREADS
|