mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 17:19:20 +00:00
libgpg-error: Upgrade 1.28 -> 1.31
License-Update: Check 19 lines of gpg-error.h.in only, more lines are not representing license text Drop upstreamed patch (From OE-Core rev: 9d26c595f648a8375ac92c2923b1cce3a1217c53) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
-61
@@ -1,61 +0,0 @@
|
||||
From 791177de023574223eddf7288eb7c5a0721ac623 Mon Sep 17 00:00:00 2001
|
||||
From: Werner Koch <wk@gnupg.org>
|
||||
Date: Sun, 18 Mar 2018 17:39:43 +0100
|
||||
Subject: [PATCH] core: Fix regression on arm64 due to invalid use of va_list.
|
||||
|
||||
* src/logging.c (_gpgrt_log_printhex): Provide a dummy arg instead of
|
||||
NULL.
|
||||
--
|
||||
|
||||
Fix
|
||||
Suggested-by: Jakub Wilk <jwilk@jwilk.net>
|
||||
|
||||
Signed-off-by: Werner Koch <wk@gnupg.org>
|
||||
|
||||
Upstream-Status: Backport
|
||||
|
||||
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
||||
|
||||
---
|
||||
src/logging.c | 18 ++++++++++++++----
|
||||
1 file changed, 14 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/src/logging.c b/src/logging.c
|
||||
index 1a4f620..d01f974 100644
|
||||
--- a/src/logging.c
|
||||
+++ b/src/logging.c
|
||||
@@ -1090,9 +1090,10 @@ _gpgrt_log_flush (void)
|
||||
|
||||
|
||||
/* Print a hexdump of (BUFFER,LENGTH). With FMT passed as NULL print
|
||||
- * just the raw dump, with FMT being an empty string, print a trailing
|
||||
- * linefeed, otherwise print an entire debug line with the expanded
|
||||
- * FMT followed by a possible wrapped hexdump and a final LF. */
|
||||
+ * just the raw dump (in this case ARG_PTR is not used), with FMT
|
||||
+ * being an empty string, print a trailing linefeed, otherwise print
|
||||
+ * an entire debug line with the expanded FMT followed by a possible
|
||||
+ * wrapped hexdump and a final LF. */
|
||||
void
|
||||
_gpgrt_logv_printhex (const void *buffer, size_t length,
|
||||
const char *fmt, va_list arg_ptr)
|
||||
@@ -1150,7 +1151,16 @@ _gpgrt_log_printhex (const void *buffer, size_t length,
|
||||
va_end (arg_ptr);
|
||||
}
|
||||
else
|
||||
- _gpgrt_logv_printhex (buffer, length, NULL, NULL);
|
||||
+ {
|
||||
+ /* va_list is not necessary a pointer and thus we can't use NULL
|
||||
+ * because that would conflict with platforms using a straight
|
||||
+ * struct for it (e.g. arm64). We use a dummy variable instead;
|
||||
+ * the static is a simple way zero it out so to not get
|
||||
+ * complains about uninitialized use. */
|
||||
+ static va_list dummy_argptr;
|
||||
+
|
||||
+ _gpgrt_logv_printhex (buffer, length, NULL, dummy_argptr);
|
||||
+ }
|
||||
}
|
||||
|
||||
|
||||
--
|
||||
2.7.4
|
||||
|
||||
+4
-6
@@ -5,7 +5,7 @@ BUGTRACKER = "https://bugs.g10code.com/gnupg/index"
|
||||
LICENSE = "GPLv2+ & LGPLv2.1+"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
|
||||
file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \
|
||||
file://src/gpg-error.h.in;endline=23;md5=fc7423b56d5f7163a9a2acf9fe2f8d6b \
|
||||
file://src/gpg-error.h.in;endline=19;md5=e9be7dd9dc7686d91b5421a091c212cc \
|
||||
file://src/init.c;endline=20;md5=872b2389fe9bae7ffb80d2b91225afbc"
|
||||
|
||||
|
||||
@@ -14,11 +14,9 @@ SECTION = "libs"
|
||||
UPSTREAM_CHECK_URI = "https://gnupg.org/download/index.html"
|
||||
SRC_URI = "${GNUPG_MIRROR}/libgpg-error/libgpg-error-${PV}.tar.bz2 \
|
||||
file://pkgconfig.patch \
|
||||
file://0001-core-Fix-regression-on-arm64-due-to-invalid-use-of-v.patch \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "2b072f6194eb22d48cd4c7c77e59b5af"
|
||||
SRC_URI[sha256sum] = "3edb957744905412f30de3e25da18682cbe509541e18cd3b8f9df695a075da49"
|
||||
SRC_URI[md5sum] = "5cc6df0fea27832e9cdbafc60f51561b"
|
||||
SRC_URI[sha256sum] = "40d0a823c9329478063903192a1f82496083b277265904878f4bc09e0db7a4ef"
|
||||
|
||||
BINCONFIG = "${bindir}/gpg-error-config"
|
||||
|
||||
@@ -42,7 +40,7 @@ do_compile_prepend() {
|
||||
mips*el) TUPLE=mipsel-unknown-linux-gnu ;;
|
||||
mips*) TUPLE=mips-unknown-linux-gnu ;;
|
||||
x86_64) TUPLE=x86_64-pc-linux-gnu ;;
|
||||
*) TUPLE=${TARGET_ARCH}-unknown-linux-gnu ;;
|
||||
*) TUPLE=${TARGET_ARCH}-unknown-linux-gnu ;;
|
||||
esac
|
||||
|
||||
if [ -n "$TARGET_FILE" ]; then
|
||||
Reference in New Issue
Block a user