mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +00:00
libupnp: upgrade 1.14.6 -> 1.14.18
Changelog: github.com/pupnp/pupnp/blob/branch-1.14.x/ChangeLog Signed-off-by: alperak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
parent
99579c5906
commit
6908f7fcb8
@ -1,42 +0,0 @@
|
||||
From 343a3b724225d3c87af0b268da14d3acb7a5b9a1 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Sun, 9 May 2021 15:38:43 -0700
|
||||
Subject: [PATCH] ithread: Use
|
||||
pthread_mutexattr_gettype/pthread_mutexattr_settype on linux
|
||||
|
||||
_np variants are not recommended anymore, and glibc 2.34+ will have
|
||||
these removed
|
||||
|
||||
Upstream-Status: Pending
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
upnp/inc/ithread.h | 6 ++++--
|
||||
1 file changed, 4 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/upnp/inc/ithread.h b/upnp/inc/ithread.h
|
||||
index f6800ea9..1d0f9dba 100644
|
||||
--- a/upnp/inc/ithread.h
|
||||
+++ b/upnp/inc/ithread.h
|
||||
@@ -304,7 +304,8 @@ static UPNP_INLINE int ithread_cleanup_thread(void)
|
||||
* Returns EINVAL if the kind is not supported.
|
||||
* See man page for pthread_mutexattr_setkind_np
|
||||
*****************************************************************************/
|
||||
-#if defined(PTHREAD_MUTEX_RECURSIVE) || defined(__DragonFly__)
|
||||
+#if defined(PTHREAD_MUTEX_RECURSIVE) || defined(__DragonFly__) \
|
||||
+ || defined (__linux__)
|
||||
#define ithread_mutexattr_setkind_np pthread_mutexattr_settype
|
||||
#else
|
||||
#define ithread_mutexattr_setkind_np pthread_mutexattr_setkind_np
|
||||
@@ -329,7 +330,8 @@ static UPNP_INLINE int ithread_cleanup_thread(void)
|
||||
* Always returns 0.
|
||||
* See man page for pthread_mutexattr_getkind_np
|
||||
*****************************************************************************/
|
||||
-#if defined(PTHREAD_MUTEX_RECURSIVE) || defined(__DragonFly__)
|
||||
+#if defined(PTHREAD_MUTEX_RECURSIVE) || defined(__DragonFly__) \
|
||||
+ || defined (__linux__)
|
||||
#define ithread_mutexattr_getkind_np pthread_mutexattr_gettype
|
||||
#else
|
||||
#define ithread_mutexattr_getkind_np pthread_mutexattr_getkind_np
|
||||
--
|
||||
2.31.1
|
||||
|
||||
@ -8,9 +8,8 @@ HOMEPAGE = "http://pupnp.sourceforge.net/"
|
||||
LICENSE = "BSD-3-Clause"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=394a0f17b97f33426275571e15920434"
|
||||
|
||||
SRCREV = "cef2b23fb36baac091b0c7d41136b4c1d9549c6d"
|
||||
SRCREV = "c540ce2431bdeac73359029d4592b45790e1d154"
|
||||
SRC_URI = "git://github.com/pupnp/pupnp.git;protocol=https;branch=branch-1.14.x \
|
||||
file://0001-ithread-Use-pthread_mutexattr_gettype-pthread_mutexa.patch \
|
||||
"
|
||||
|
||||
S="${WORKDIR}/git"
|
||||
Loading…
x
Reference in New Issue
Block a user