mirror of
https://git.yoctoproject.org/poky
synced 2026-09-15 15:49:32 +02:00
gnome-desktop-testing: Fix build on uclibc
[YOCTO #6577] Change-Id: Ia29fb963a7df4e77504993172f85851e0b540c7e (From OE-Core rev: 1fc544811582ed68b6e0a61fd22c169e1825b725) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -0,0 +1,35 @@
|
|||||||
|
From b1de2c6290bc0651fe87a8c4fb52e7a0a5fe6322 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Khem Raj <raj.khem@gmail.com>
|
||||||
|
Date: Sun, 5 Oct 2014 16:01:49 -0700
|
||||||
|
Subject: [PATCH] gsystem-subprocess.c: Enable GNU extensions in system C
|
||||||
|
library
|
||||||
|
|
||||||
|
This should export O_CLOEXEC where it is only
|
||||||
|
available when _GNU_SOURCE is defined .e.g. uclibc based systems
|
||||||
|
|
||||||
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
|
||||||
|
Upstream-Status: Pending
|
||||||
|
|
||||||
|
---
|
||||||
|
src/libgsystem/gsystem-subprocess.c | 4 ++++
|
||||||
|
1 file changed, 4 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/src/libgsystem/gsystem-subprocess.c b/src/libgsystem/gsystem-subprocess.c
|
||||||
|
index a967896..a52a362 100644
|
||||||
|
--- a/src/libgsystem/gsystem-subprocess.c
|
||||||
|
+++ b/src/libgsystem/gsystem-subprocess.c
|
||||||
|
@@ -18,6 +18,10 @@
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
|
||||||
|
+#ifndef _GNU_SOURCE
|
||||||
|
+#define _GNU_SOURCE
|
||||||
|
+#endif
|
||||||
|
+
|
||||||
|
#define _GSYSTEM_NO_LOCAL_ALLOC
|
||||||
|
#include "libgsystem.h"
|
||||||
|
|
||||||
|
--
|
||||||
|
2.1.1
|
||||||
|
|
||||||
@@ -2,7 +2,9 @@ SUMMARY = "Test runner for GNOME-style installed tests"
|
|||||||
HOMEPAGE = "https://wiki.gnome.org/GnomeGoals/InstalledTests"
|
HOMEPAGE = "https://wiki.gnome.org/GnomeGoals/InstalledTests"
|
||||||
LICENSE = "LGPLv2+"
|
LICENSE = "LGPLv2+"
|
||||||
|
|
||||||
SRC_URI = "${GNOME_MIRROR}/${BPN}/${PV}/${BPN}-${PV}.tar.xz"
|
SRC_URI = "${GNOME_MIRROR}/${BPN}/${PV}/${BPN}-${PV}.tar.xz \
|
||||||
|
file://0001-gsystem-subprocess.c-Enable-GNU-extensions-in-system.patch \
|
||||||
|
"
|
||||||
SRC_URI[md5sum] = "a608ad72a77e23a1aecdfd8d07a94baf"
|
SRC_URI[md5sum] = "a608ad72a77e23a1aecdfd8d07a94baf"
|
||||||
SRC_URI[sha256sum] = "1a3eed73678dd22d09d6a7ec4f899557df3e8b4a802affa76d0f163b31286539"
|
SRC_URI[sha256sum] = "1a3eed73678dd22d09d6a7ec4f899557df3e8b4a802affa76d0f163b31286539"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user