summaryrefslogtreecommitdiff
path: root/dev-libs/boehm-gc/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-04-22 14:25:03 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-04-22 14:25:03 +0100
commit5e8702bcbbed438e6c6cce023e7ef0cc9baa3e02 (patch)
treeb041acef19bb9ae66c228d5c9d34d1e00aeb2b95 /dev-libs/boehm-gc/files
parent5cfef3c94cd7e82136c69a0322f5ba21f7e64632 (diff)
gentoo resync : 22.04.2018
Diffstat (limited to 'dev-libs/boehm-gc/files')
-rw-r--r--dev-libs/boehm-gc/files/boehm-gc-7.2d-automake-1.13.patch13
-rw-r--r--dev-libs/boehm-gc/files/boehm-gc-7.2d-configure.patch33
2 files changed, 0 insertions, 46 deletions
diff --git a/dev-libs/boehm-gc/files/boehm-gc-7.2d-automake-1.13.patch b/dev-libs/boehm-gc/files/boehm-gc-7.2d-automake-1.13.patch
deleted file mode 100644
index e987c42a5852..000000000000
--- a/dev-libs/boehm-gc/files/boehm-gc-7.2d-automake-1.13.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/configure.ac b/configure.ac
-index ee6693d..d258252 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -26,7 +26,7 @@ AC_PREREQ(2.64)
- AC_REVISION($Revision: 1.1 $)
- GC_SET_VERSION
- AM_INIT_AUTOMAKE([foreign dist-bzip2 nostdinc])
--AM_CONFIG_HEADER([include/private/config.h])
-+AC_CONFIG_HEADER([include/private/config.h])
- AM_MAINTAINER_MODE
-
- AC_SUBST(PACKAGE)
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
deleted file mode 100644
index fdada4394cc4..000000000000
--- a/dev-libs/boehm-gc/files/boehm-gc-7.2d-configure.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-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