summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/systemd/systemd
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2014-08-25 16:45:04 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-08-27 12:12:32 +0100
commit40771f3ba70e25d3222378b660b2c01b60a7a1bf (patch)
treec0edd25baf00373215bed47410dc61cf37025a40 /meta/recipes-core/systemd/systemd
parent036644daff784df4e71b32531445b559a1a6067f (diff)
downloadpoky-40771f3ba70e25d3222378b660b2c01b60a7a1bf.tar.gz
systemd: Support building on uclibc
include missing.h to get MAX_HANDLE_SZ which is not defined in uclibc. (From OE-Core rev: fa2a90ca632d10fe1a14098c3f4fcacc7cea6ac5) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/systemd/systemd')
-rw-r--r--meta/recipes-core/systemd/systemd/0001-util-Including-missing.h-to-get-MAX_HANDLE_SZ.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-core/systemd/systemd/0001-util-Including-missing.h-to-get-MAX_HANDLE_SZ.patch b/meta/recipes-core/systemd/systemd/0001-util-Including-missing.h-to-get-MAX_HANDLE_SZ.patch
new file mode 100644
index 0000000000..ba4a21ba9f
--- /dev/null
+++ b/meta/recipes-core/systemd/systemd/0001-util-Including-missing.h-to-get-MAX_HANDLE_SZ.patch
@@ -0,0 +1,29 @@
1From 764ecbeda4813f33eafd45fdc3ccb9376356f475 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 25 Aug 2014 15:40:31 -0700
4Subject: [PATCH] util: Including missing.h to get MAX_HANDLE_SZ
5
6Helps compiling on uclibc
7
8Signed-off-by: Khem Raj <raj.khem@gmail.com>
9
10Upstream-Status: [Backport]
11---
12 src/shared/util.h | 1 +
13 1 file changed, 1 insertion(+)
14
15diff --git a/src/shared/util.h b/src/shared/util.h
16index 62eb604..036fc59 100644
17--- a/src/shared/util.h
18+++ b/src/shared/util.h
19@@ -84,6 +84,7 @@
20 #endif
21
22 #include "macro.h"
23+#include "missing.h"
24 #include "time-util.h"
25
26 /* What is interpreted as whitespace? */
27--
281.7.10.4
29