mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-04-20 11:38:34 +00:00
udisks2: Update to 2.1.7
Fix below build with musl while here | ../../udisks-2.1.7/udisks/udisksclient.c:2004:6: warning: '__GNUC_PREREQ' is not defined, evaluates to 0 [-Wundef] | # if __GNUC_PREREQ(4,6) || __clang__ Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
26
meta-oe/recipes-support/udisks/udisks2/non-gnu-libc.patch
Normal file
26
meta-oe/recipes-support/udisks/udisks2/non-gnu-libc.patch
Normal file
@@ -0,0 +1,26 @@
|
||||
musl does not define __GNUC_PREREQ therefore check for C library being glibc
|
||||
if not then define the macro
|
||||
|
||||
Upstream-Status: Pending
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
Index: udisks-2.1.7/udisks/udisksclient.c
|
||||
===================================================================
|
||||
--- udisks-2.1.7.orig/udisks/udisksclient.c
|
||||
+++ udisks-2.1.7/udisks/udisksclient.c
|
||||
@@ -27,8 +27,15 @@
|
||||
#include "udisksobjectinfo.h"
|
||||
|
||||
/* For __GNUC_PREREQ usage below */
|
||||
-#ifdef __GNUC__
|
||||
+#ifdef __GLIBC__
|
||||
# include <features.h>
|
||||
+#else
|
||||
+#if defined(__GNUC__)
|
||||
+#define __GNUC_PREREQ(__maj, __min) \
|
||||
+ (__GNUC__ > (__maj) || __GNUC__ == (__maj) && __GNUC_MINOR__ >= (__min))
|
||||
+#else
|
||||
+#define __GNUC_PREREQ(__maj, __min) 0
|
||||
+#endif
|
||||
#endif
|
||||
|
||||
/**
|
||||
@@ -7,9 +7,11 @@ DEPENDS += "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)
|
||||
|
||||
RDEPENDS_${PN} = "acl"
|
||||
|
||||
SRC_URI = "http://udisks.freedesktop.org/releases/udisks-${PV}.tar.bz2"
|
||||
SRC_URI[md5sum] = "73632501002e6de8244f831e38b2b98e"
|
||||
SRC_URI[sha256sum] = "2cfcf560447ea44cba2a683342c7062aaaf35e4eb554bed64ac2dd55a70a5fb6"
|
||||
SRC_URI = "http://udisks.freedesktop.org/releases/udisks-${PV}.tar.bz2 \
|
||||
file://non-gnu-libc.patch \
|
||||
"
|
||||
SRC_URI[md5sum] = "8bccd36573b75286538bd5bd2c424f45"
|
||||
SRC_URI[sha256sum] = "abae2bb3bdc691ca13c1e4c244630b8c881c4f3b35c207299f1b39b7bec83785"
|
||||
|
||||
inherit autotools systemd gtk-doc gobject-introspection
|
||||
|
||||
Reference in New Issue
Block a user