summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2021-11-17 16:34:54 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-11-21 11:05:01 +0000
commit00e61980797642bceae84e4192436c96e97ac9bf (patch)
tree80c8533baa7c4b98ef461e9b8e2f4f5af65ff2e8 /meta/recipes-support
parentfc90056b3c82fd566f8e39bac7ddbcb8817f3ff6 (diff)
downloadpoky-00e61980797642bceae84e4192436c96e97ac9bf.tar.gz
db: mark all patches as non-upstreamable
Since Oracle relicensed bdb, the open source community is slowly but surely replacing bdb with supported and open source friendly alternatives. (From OE-Core rev: b30d3a3243ac9ca2fa0f10337373eac96fdb2602) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r--meta/recipes-support/db/db/0001-Fix-libc-compatibility-by-renaming-atomic_init-API.patch2
-rw-r--r--meta/recipes-support/db/db/0001-atomic-Rename-local-__atomic_compare_exchange-to-avo.patch2
-rw-r--r--meta/recipes-support/db/db/0001-clock-Do-not-define-own-timespec.patch2
-rw-r--r--meta/recipes-support/db/db/0001-configure-Add-explicit-tag-options-to-libtool-invoca.patch2
-rw-r--r--meta/recipes-support/db/db/fix-parallel-build.patch2
-rw-r--r--meta/recipes-support/db/db/sequence-type.patch2
6 files changed, 6 insertions, 6 deletions
diff --git a/meta/recipes-support/db/db/0001-Fix-libc-compatibility-by-renaming-atomic_init-API.patch b/meta/recipes-support/db/db/0001-Fix-libc-compatibility-by-renaming-atomic_init-API.patch
index a4ff2ecb0c..c82e7c375f 100644
--- a/meta/recipes-support/db/db/0001-Fix-libc-compatibility-by-renaming-atomic_init-API.patch
+++ b/meta/recipes-support/db/db/0001-Fix-libc-compatibility-by-renaming-atomic_init-API.patch
@@ -7,7 +7,7 @@ db5 does not build because it is redefining a C++11 standard
7library identifier, atomic_init(). Therefore prefix all 7library identifier, atomic_init(). Therefore prefix all
8its internal defines with '__db_', to avoid collisions. 8its internal defines with '__db_', to avoid collisions.
9 9
10Upstream-Status: Pending 10Upstream-Status: Inappropriate [as far as open source community is concerned, upstream is dead]
11 11
12Signed-off-by: Khem Raj <raj.khem@gmail.com> 12Signed-off-by: Khem Raj <raj.khem@gmail.com>
13--- 13---
diff --git a/meta/recipes-support/db/db/0001-atomic-Rename-local-__atomic_compare_exchange-to-avo.patch b/meta/recipes-support/db/db/0001-atomic-Rename-local-__atomic_compare_exchange-to-avo.patch
index 571708e03e..2374885e77 100644
--- a/meta/recipes-support/db/db/0001-atomic-Rename-local-__atomic_compare_exchange-to-avo.patch
+++ b/meta/recipes-support/db/db/0001-atomic-Rename-local-__atomic_compare_exchange-to-avo.patch
@@ -11,7 +11,7 @@ Fixes
11../db-5.3.28/src/dbinc/atomic.h:179:19: error: definition of builtin function '__atomic_compare_exchange' 11../db-5.3.28/src/dbinc/atomic.h:179:19: error: definition of builtin function '__atomic_compare_exchange'
12static inline int __atomic_compare_exchange( 12static inline int __atomic_compare_exchange(
13 13
14Upstream-Status: Pending 14Upstream-Status: Inappropriate [as far as open source community is concerned, upstream is dead]
15 15
16Signed-off-by: Khem Raj <raj.khem@gmail.com> 16Signed-off-by: Khem Raj <raj.khem@gmail.com>
17--- 17---
diff --git a/meta/recipes-support/db/db/0001-clock-Do-not-define-own-timespec.patch b/meta/recipes-support/db/db/0001-clock-Do-not-define-own-timespec.patch
index 9d51a44a26..d238b0f063 100644
--- a/meta/recipes-support/db/db/0001-clock-Do-not-define-own-timespec.patch
+++ b/meta/recipes-support/db/db/0001-clock-Do-not-define-own-timespec.patch
@@ -10,7 +10,7 @@ its 12-bytes here and libc has 16-bytes
10 10
11This can cause problems especially with 64bit time_t 11This can cause problems especially with 64bit time_t
12 12
13Upstream-Status: Pending 13Upstream-Status: Inappropriate [as far as open source community is concerned, upstream is dead]
14Signed-off-by: Khem Raj <raj.khem@gmail.com> 14Signed-off-by: Khem Raj <raj.khem@gmail.com>
15--- 15---
16 src/dbinc/clock.h | 17 +---------------- 16 src/dbinc/clock.h | 17 +----------------
diff --git a/meta/recipes-support/db/db/0001-configure-Add-explicit-tag-options-to-libtool-invoca.patch b/meta/recipes-support/db/db/0001-configure-Add-explicit-tag-options-to-libtool-invoca.patch
index cb28db1343..a574cf67b9 100644
--- a/meta/recipes-support/db/db/0001-configure-Add-explicit-tag-options-to-libtool-invoca.patch
+++ b/meta/recipes-support/db/db/0001-configure-Add-explicit-tag-options-to-libtool-invoca.patch
@@ -7,7 +7,7 @@ This helps cross compile when tag inference via heuristics
7fail because CC variable is having -fPIE -pie and libtool 7fail because CC variable is having -fPIE -pie and libtool
8smartly removes it when building libraries 8smartly removes it when building libraries
9 9
10Upstream-Status: Pending 10Upstream-Status: Inappropriate [as far as open source community is concerned, upstream is dead]
11 11
12Signed-off-by: Khem Raj <raj.khem@gmail.com> 12Signed-off-by: Khem Raj <raj.khem@gmail.com>
13--- 13---
diff --git a/meta/recipes-support/db/db/fix-parallel-build.patch b/meta/recipes-support/db/db/fix-parallel-build.patch
index 27632e1ddb..42c2407cf2 100644
--- a/meta/recipes-support/db/db/fix-parallel-build.patch
+++ b/meta/recipes-support/db/db/fix-parallel-build.patch
@@ -2,7 +2,7 @@ With higher paralelism it sometimes fails with:
2libtool: link: `util_log.lo' is not a valid libtool object 2libtool: link: `util_log.lo' is not a valid libtool object
3make: *** [db_replicate] Error 1 3make: *** [db_replicate] Error 1
4 4
5Upstream-Status: Pending 5Upstream-Status: Inappropriate [as far as open source community is concerned, upstream is dead]
6 6
7Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> 7Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
8 8
diff --git a/meta/recipes-support/db/db/sequence-type.patch b/meta/recipes-support/db/db/sequence-type.patch
index a6fe3d62a0..fc9f7f0113 100644
--- a/meta/recipes-support/db/db/sequence-type.patch
+++ b/meta/recipes-support/db/db/sequence-type.patch
@@ -6,7 +6,7 @@ in stdint.h.
6This then breaks the overly complicated type check but as we know that int64_t 6This then breaks the overly complicated type check but as we know that int64_t
7exists and works, we can just delete that. 7exists and works, we can just delete that.
8 8
9Upstream-Status: Pending 9Upstream-Status: Inappropriate [as far as open source community is concerned, upstream is dead]
10Signed-off-by: Ross Burton <ross.burton@intel.com> 10Signed-off-by: Ross Burton <ross.burton@intel.com>
11 11
12--- a/dist/aclocal/sequence.m4~ 2013-09-09 16:35:02.000000000 +0100 12--- a/dist/aclocal/sequence.m4~ 2013-09-09 16:35:02.000000000 +0100