mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 13:29:49 +00:00
libdnf: upgrade 0.58.0 -> 0.62.0
(From OE-Core rev: 87f9e745998be322cf13952f8d914139185b9d8c) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
9f137c86a8
commit
d112d5bee6
+10
-7
@@ -1,23 +1,26 @@
|
|||||||
From 8aa5402393fabaf4fff51be3af4868e8dfab6da7 Mon Sep 17 00:00:00 2001
|
From fc0b81bb717db3f41513f09f6661676a7aea6dd4 Mon Sep 17 00:00:00 2001
|
||||||
From: Alexander Kanavin <alex.kanavin@gmail.com>
|
From: Alexander Kanavin <alex.kanavin@gmail.com>
|
||||||
Date: Tue, 9 Mar 2021 19:30:42 +0000
|
Date: Tue, 9 Mar 2021 19:30:42 +0000
|
||||||
Subject: [PATCH] libdnf/config.h: avoid the use of non-portable __WORDSIZE
|
Subject: [PATCH] libdnf/config.h: avoid the use of non-portable __WORDSIZE
|
||||||
|
|
||||||
Upstream-Status: Submitted [https://github.com/rpm-software-management/libdnf/pull/1159]
|
Upstream-Status: Submitted [https://github.com/rpm-software-management/libdnf/pull/1159]
|
||||||
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
|
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
|
||||||
|
|
||||||
---
|
---
|
||||||
libdnf/config.h | 8 +++-----
|
libdnf/config.h | 9 +++------
|
||||||
1 file changed, 3 insertions(+), 5 deletions(-)
|
1 file changed, 3 insertions(+), 6 deletions(-)
|
||||||
|
|
||||||
diff --git a/libdnf/config.h b/libdnf/config.h
|
diff --git a/libdnf/config.h b/libdnf/config.h
|
||||||
index 16121f6f..2925923e 100644
|
index 01b330b4..dbd53f5e 100644
|
||||||
--- a/libdnf/config.h
|
--- a/libdnf/config.h
|
||||||
+++ b/libdnf/config.h
|
+++ b/libdnf/config.h
|
||||||
@@ -18,12 +18,10 @@
|
@@ -20,14 +20,11 @@
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
#ifdef __APPLE__
|
||||||
|
#include <stdint.h>
|
||||||
|
-#else
|
||||||
-#include <bits/wordsize.h>
|
-#include <bits/wordsize.h>
|
||||||
|
#endif
|
||||||
+#include <limits.h>
|
+#include <limits.h>
|
||||||
|
|
||||||
-#if __WORDSIZE == 32
|
-#if __WORDSIZE == 32
|
||||||
|
|||||||
+1
-1
@@ -14,7 +14,7 @@ SRC_URI = "git://github.com/rpm-software-management/libdnf;branch=dnf-4-master \
|
|||||||
file://0001-libdnf-config.h-avoid-the-use-of-non-portable-__WORD.patch \
|
file://0001-libdnf-config.h-avoid-the-use-of-non-portable-__WORD.patch \
|
||||||
"
|
"
|
||||||
|
|
||||||
SRCREV = "85278894f21bc1957dc47a2a09ddacf59bc3cda8"
|
SRCREV = "9a0e17562b19586b3ffa70fa93eb961b558794c7"
|
||||||
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+)"
|
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+)"
|
||||||
|
|
||||||
S = "${WORKDIR}/git"
|
S = "${WORKDIR}/git"
|
||||||
Reference in New Issue
Block a user