summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNaohiro Aota <naota@gentoo.org>2012-10-13 13:42:13 +0000
committerNaohiro Aota <naota@gentoo.org>2012-10-13 13:42:13 +0000
commit2c68bb6f8246ecfefdbee15e785a2cc6542082bd (patch)
treeddb7ce4e13bde3a8e9ea4b0af25499da29e776b7 /dev-libs/boehm-gc/files
parentRemove pogooglue USE flag by upstream's request (diff)
downloadgentoo-2-2c68bb6f8246ecfefdbee15e785a2cc6542082bd.tar.gz
gentoo-2-2c68bb6f8246ecfefdbee15e785a2cc6542082bd.tar.bz2
gentoo-2-2c68bb6f8246ecfefdbee15e785a2cc6542082bd.zip
Add patch to fix bash-ism configure; Add ~x86-fbsd.
(Portage version: 2.2.0_alpha134/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/boehm-gc/files')
-rw-r--r--dev-libs/boehm-gc/files/boehm-gc-7.2d-configure.patch33
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-libs/boehm-gc/files/boehm-gc-7.2d-configure.patch b/dev-libs/boehm-gc/files/boehm-gc-7.2d-configure.patch
new file mode 100644
index 000000000000..fdada4394cc4
--- /dev/null
+++ b/dev-libs/boehm-gc/files/boehm-gc-7.2d-configure.patch
@@ -0,0 +1,33 @@
+diff --git a/configure.ac b/configure.ac
+index ee6693d..45300c0 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -337,7 +337,7 @@ if test $compiler_xlc = yes -a "$powerpc_darwin" = true; then
+ AC_DEFINE([DARWIN_DONT_PARSE_STACK], 1, [See doc/README.macros.])
+ fi
+
+-if test "$GCC" == yes; then
++if test "$GCC" = yes; then
+ # Disable aliasing optimization unless forced to.
+ AC_MSG_CHECKING([whether gcc supports -fno-strict-aliasing])
+ ac_cv_fno_strict_aliasing=no
+@@ -442,8 +442,8 @@ esac
+ AC_MSG_RESULT($enable_shared)
+
+ # Compile with GC_DLL defined unless building static libraries.
+-if test "${enable_shared}" == yes; then
+- if test "${enable_static}" == no; then
++if test "${enable_shared}" = yes; then
++ if test "${enable_static}" = no; then
+ AC_DEFINE(GC_DLL)
+ # FIXME: Also pass -fvisibility=hidden option if GCC v4+ and not Win32.
+ fi
+@@ -707,7 +707,7 @@ if test -n "${with_cross_host}"; then
+ [Define to tune the collector for small heap sizes.])
+ fi
+
+-if test "$enable_gc_debug" == "no"; then
++if test "$enable_gc_debug" = "no"; then
+ AC_DEFINE([NO_DEBUGGING], 1,
+ [Disable debugging, like GC_dump and its callees.])
+ fi