Bump buildroot to 2019.02
This commit is contained in:
24
bsp/buildroot/package/dmalloc/0005-fix-strdup.patch
Normal file
24
bsp/buildroot/package/dmalloc/0005-fix-strdup.patch
Normal file
@@ -0,0 +1,24 @@
|
||||
From 59d73a473f1c1a31bcba90d314f956d0bcc3de95 Mon Sep 17 00:00:00 2001
|
||||
From: Siana Gearz <siana.sg@live.de>
|
||||
Date: Sat, 8 Sep 2012 22:55:17 +0200
|
||||
Subject: [PATCH] Fix strdup
|
||||
|
||||
[Retrieved from:
|
||||
https://github.com/siana/dmalloc/commit/59d73a473f1c1a31bcba90d314f956d0bcc3de95]
|
||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
---
|
||||
dmalloc.h.3 | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/dmalloc.h.3 b/dmalloc.h.3
|
||||
index d3d1c13..3fc573a 100644
|
||||
--- a/dmalloc.h.3
|
||||
+++ b/dmalloc.h.3
|
||||
@@ -459,6 +459,7 @@ DMALLOC_PNT valloc(DMALLOC_SIZE size);
|
||||
*
|
||||
* string -> String we are duplicating.
|
||||
*/
|
||||
+#undef strdup
|
||||
extern
|
||||
char *strdup(const char *string);
|
||||
#endif /* ifndef DMALLOC_STRDUP_MACRO */
|
||||
24
bsp/buildroot/package/dmalloc/0006-fix-strndup.patch
Normal file
24
bsp/buildroot/package/dmalloc/0006-fix-strndup.patch
Normal file
@@ -0,0 +1,24 @@
|
||||
From 005d92c2cebbde5c8623daa29725f7a62b18df7c Mon Sep 17 00:00:00 2001
|
||||
From: Siana Gearz <siana.sg@live.de>
|
||||
Date: Sat, 8 Sep 2012 22:44:35 +0200
|
||||
Subject: [PATCH] Fix strndup
|
||||
|
||||
[Retrieved from:
|
||||
https://github.com/siana/dmalloc/commit/005d92c2cebbde5c8623daa29725f7a62b18df7c]
|
||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
---
|
||||
dmalloc.h.3 | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/dmalloc.h.3 b/dmalloc.h.3
|
||||
index 8bda997..fb538a8 100644
|
||||
--- a/dmalloc.h.3
|
||||
+++ b/dmalloc.h.3
|
||||
@@ -429,6 +429,7 @@ char *strdup(const char *string);
|
||||
*
|
||||
* len -> Length of the string to duplicate.
|
||||
*/
|
||||
+#undef strndup
|
||||
extern
|
||||
char *strndup(const char *string, const DMALLOC_SIZE len);
|
||||
|
||||
Reference in New Issue
Block a user