summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/rpm/rpm/uclibc-support.patch
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@windriver.com>2014-07-02 19:57:44 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-07-08 11:20:12 +0100
commitfe483ca37c33ebfe4c3e391244c47969e1560aeb (patch)
tree4b703d42ad5b4c22f9075463c013e562ab649345 /meta/recipes-devtools/rpm/rpm/uclibc-support.patch
parent107ef516a6b5dc8f6e4606d30e8fa204d75f0b21 (diff)
downloadpoky-fe483ca37c33ebfe4c3e391244c47969e1560aeb.tar.gz
rpm: Upgrade to 5.4.14
Update various patches. A few corrections to the patch descriptions, otherwise simple quilt refresh or conflict resolution. Remove rpm-solvedb.patch and rpm-respect-arch.patch. These are both related to the old solvedb package dependency solver. This is no longer used since we moved to smartpm. rpm-stub-out-git_strerror was a backport and is no longer needed. RPM 5.4.12 and newer normally requires Berkley DB 6.0 or newer. A small patch to configure allows RPM to dynamically select DB 5.3 or DB 6.0 based on what is available at configure time. (From OE-Core rev: 0c7b4a5e23836889196f85f472f081d51529e94e) Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/rpm/rpm/uclibc-support.patch')
-rw-r--r--meta/recipes-devtools/rpm/rpm/uclibc-support.patch36
1 files changed, 18 insertions, 18 deletions
diff --git a/meta/recipes-devtools/rpm/rpm/uclibc-support.patch b/meta/recipes-devtools/rpm/rpm/uclibc-support.patch
index 64746ce224..8870adb9e7 100644
--- a/meta/recipes-devtools/rpm/rpm/uclibc-support.patch
+++ b/meta/recipes-devtools/rpm/rpm/uclibc-support.patch
@@ -4,10 +4,10 @@ Upstream-Status: Pending
4 4
5Signed-off-by: Khem Raj <raj.khem@gmail.com> 5Signed-off-by: Khem Raj <raj.khem@gmail.com>
6 6
7Index: rpm-5.4.9/rpmio/rpmio.h 7Index: rpm-5.4.14/rpmio/rpmio.h
8=================================================================== 8===================================================================
9--- rpm-5.4.9.orig/rpmio/rpmio.h 2010-09-29 07:54:30.000000000 -0700 9--- rpm-5.4.14.orig/rpmio/rpmio.h
10+++ rpm-5.4.9/rpmio/rpmio.h 2012-06-12 07:29:19.610745014 -0700 10+++ rpm-5.4.14/rpmio/rpmio.h
11@@ -23,7 +23,8 @@ 11@@ -23,7 +23,8 @@
12 */ 12 */
13 /*@{*/ 13 /*@{*/
@@ -18,11 +18,11 @@ Index: rpm-5.4.9/rpmio/rpmio.h
18 #define USE_COOKIE_SEEK_POINTER 1 18 #define USE_COOKIE_SEEK_POINTER 1
19 typedef _IO_off64_t _libio_off_t; 19 typedef _IO_off64_t _libio_off_t;
20 typedef _libio_off_t * _libio_pos_t; 20 typedef _libio_off_t * _libio_pos_t;
21Index: rpm-5.4.9/system.h 21Index: rpm-5.4.14/system.h
22=================================================================== 22===================================================================
23--- rpm-5.4.9.orig/system.h 2012-04-26 10:46:49.000000000 -0700 23--- rpm-5.4.14.orig/system.h
24+++ rpm-5.4.9/system.h 2012-06-12 07:30:08.242747422 -0700 24+++ rpm-5.4.14/system.h
25@@ -410,7 +410,7 @@ 25@@ -481,7 +481,7 @@ extern void muntrace (void)
26 #endif /* defined(__LCLINT__) */ 26 #endif /* defined(__LCLINT__) */
27 27
28 /* Memory allocation via macro defs to get meaningful locations from mtrace() */ 28 /* Memory allocation via macro defs to get meaningful locations from mtrace() */
@@ -31,11 +31,11 @@ Index: rpm-5.4.9/system.h
31 #define xmalloc(_size) (malloc(_size) ? : vmefail(_size)) 31 #define xmalloc(_size) (malloc(_size) ? : vmefail(_size))
32 #define xcalloc(_nmemb, _size) (calloc((_nmemb), (_size)) ? : vmefail(_size)) 32 #define xcalloc(_nmemb, _size) (calloc((_nmemb), (_size)) ? : vmefail(_size))
33 #define xrealloc(_ptr, _size) (realloc((_ptr), (_size)) ? : vmefail(_size)) 33 #define xrealloc(_ptr, _size) (realloc((_ptr), (_size)) ? : vmefail(_size))
34Index: rpm-5.4.9/lib/librpm.vers 34Index: rpm-5.4.14/lib/librpm.vers
35=================================================================== 35===================================================================
36--- rpm-5.4.9.orig/lib/librpm.vers 2011-04-10 15:55:23.000000000 -0700 36--- rpm-5.4.14.orig/lib/librpm.vers
37+++ rpm-5.4.9/lib/librpm.vers 2012-06-12 07:29:19.610745014 -0700 37+++ rpm-5.4.14/lib/librpm.vers
38@@ -405,6 +405,10 @@ 38@@ -405,6 +405,10 @@ LIBRPM_0
39 specedit; 39 specedit;
40 strict_erasures; 40 strict_erasures;
41 XrpmtsiInit; 41 XrpmtsiInit;
@@ -46,14 +46,14 @@ Index: rpm-5.4.9/lib/librpm.vers
46 local: 46 local:
47 *; 47 *;
48 }; 48 };
49Index: rpm-5.4.9/rpmio/librpmio.vers 49Index: rpm-5.4.14/rpmio/librpmio.vers
50=================================================================== 50===================================================================
51--- rpm-5.4.9.orig/rpmio/librpmio.vers 2012-05-07 07:38:23.000000000 -0700 51--- rpm-5.4.14.orig/rpmio/librpmio.vers
52+++ rpm-5.4.9/rpmio/librpmio.vers 2012-06-12 07:29:19.626745024 -0700 52+++ rpm-5.4.14/rpmio/librpmio.vers
53@@ -994,6 +994,10 @@ 53@@ -1056,6 +1056,10 @@ LIBRPMIO_0
54 mongo_simple_int_command; 54 mongo_write_concern_set_mode;
55 mongo_simple_str_command; 55 mongo_write_concern_set_w;
56 mongo_update; 56 mongo_write_concern_set_wtimeout;
57+ xmalloc; 57+ xmalloc;
58+ xrealloc; 58+ xrealloc;
59+ xcalloc; 59+ xcalloc;