mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-14 14:25:53 +01:00
There is new patch-status QA check in oe-core: https://git.openembedded.org/openembedded-core/commit/?id=76a685bfcf927593eac67157762a53259089ea8a This is temporary work around just to hide _many_ warnings from optional patch-status (if you add it to WARN_QA). This just added Upstream-Status: Pending everywhere without actually investigating what's the proper status. This is just to hide current QA warnings and to catch new .patch files being added without Upstream-Status, but the number of Pending patches is now terrible: 5 (26%) meta-xfce 6 (50%) meta-perl 15 (42%) meta-webserver 21 (36%) meta-gnome 25 (57%) meta-filesystems 26 (43%) meta-initramfs 45 (45%) meta-python 47 (55%) meta-multimedia 312 (63%) meta-networking 756 (61%) meta-oe Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
50 lines
1.3 KiB
Diff
50 lines
1.3 KiB
Diff
From 7c3036609494296f7c29413bf3acba829c81f62c Mon Sep 17 00:00:00 2001
|
|
From: Romain Naour <romain.naour@openwide.fr>
|
|
Date: Sat, 8 Aug 2015 22:58:57 +0200
|
|
Subject: [PATCH 1/2] define __THROW to avoid build issue with musl
|
|
|
|
Fixes:
|
|
http://autobuild.buildroot.net/results/d27/d2781e70b04a207e2e9397d888032294c7285034/build-end.log
|
|
|
|
Signed-off-by: Romain Naour <romain.naour@openwide.fr>
|
|
---
|
|
Upstream-Status: Pending
|
|
|
|
genisoimage/sha256.h | 4 ++++
|
|
genisoimage/sha512.h | 4 ++++
|
|
2 files changed, 8 insertions(+)
|
|
|
|
diff --git a/genisoimage/sha256.h b/genisoimage/sha256.h
|
|
index e7f4cb9..bcae7ef 100644
|
|
--- a/genisoimage/sha256.h
|
|
+++ b/genisoimage/sha256.h
|
|
@@ -29,6 +29,10 @@
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
+/* define __THROW to avoid build issue when it's not available from the libc */
|
|
+#ifndef __THROW
|
|
+# define __THROW
|
|
+#endif
|
|
|
|
/* Structure to save state of computation between the single steps. */
|
|
struct sha256_ctx
|
|
diff --git a/genisoimage/sha512.h b/genisoimage/sha512.h
|
|
index 7298355..8cee8b0 100644
|
|
--- a/genisoimage/sha512.h
|
|
+++ b/genisoimage/sha512.h
|
|
@@ -29,6 +29,10 @@
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
+/* define __THROW to avoid build issue when it's not available from the libc */
|
|
+#ifndef __THROW
|
|
+# define __THROW
|
|
+#endif
|
|
|
|
/* Structure to save state of computation between the single steps. */
|
|
struct sha512_ctx
|
|
--
|
|
2.14.1
|
|
|