aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/rpm/rpm/uclibc-support.patch
blob: 8870adb9e7d2218139d09c55ee2ff66704cfc3e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
Define the x* wrappers for uclibc as well

Upstream-Status: Pending

Signed-off-by: Khem Raj <raj.khem@gmail.com>

Index: rpm-5.4.14/rpmio/rpmio.h
===================================================================
--- rpm-5.4.14.orig/rpmio/rpmio.h
+++ rpm-5.4.14/rpmio/rpmio.h
@@ -23,7 +23,8 @@
  */
 /*@{*/
 #if !defined(__LCLINT__) && !defined(__UCLIBC__) && defined(__GLIBC__) && \
-	(__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 2))
+	(__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 2)) && \
+	!defined(__UCLIBC__)
 #define USE_COOKIE_SEEK_POINTER 1
 typedef _IO_off64_t 	_libio_off_t;
 typedef _libio_off_t *	_libio_pos_t;
Index: rpm-5.4.14/system.h
===================================================================
--- rpm-5.4.14.orig/system.h
+++ rpm-5.4.14/system.h
@@ -481,7 +481,7 @@ extern void muntrace (void)
 #endif /* defined(__LCLINT__) */
 
 /* Memory allocation via macro defs to get meaningful locations from mtrace() */
-#if defined(__GNUC__)
+#if defined(__GNUC__) || defined(__UCLIBC__)
 #define	xmalloc(_size) 		(malloc(_size) ? : vmefail(_size))
 #define	xcalloc(_nmemb, _size)	(calloc((_nmemb), (_size)) ? : vmefail(_size))
 #define	xrealloc(_ptr, _size)	(realloc((_ptr), (_size)) ? : vmefail(_size))
Index: rpm-5.4.14/lib/librpm.vers
===================================================================
--- rpm-5.4.14.orig/lib/librpm.vers
+++ rpm-5.4.14/lib/librpm.vers
@@ -405,6 +405,10 @@ LIBRPM_0
     specedit;
     strict_erasures;
     XrpmtsiInit;
+    xmalloc;
+    xrealloc;
+    xcalloc;
+    xstrdup;
   local:
     *;
 };
Index: rpm-5.4.14/rpmio/librpmio.vers
===================================================================
--- rpm-5.4.14.orig/rpmio/librpmio.vers
+++ rpm-5.4.14/rpmio/librpmio.vers
@@ -1056,6 +1056,10 @@ LIBRPMIO_0
     mongo_write_concern_set_mode;
     mongo_write_concern_set_w;
     mongo_write_concern_set_wtimeout;
+    xmalloc;
+    xrealloc;
+    xcalloc;
+    xstrdup;
   local:
     *;
 };