summaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp/acpid/acpid
diff options
context:
space:
mode:
authorMaxin B. John <maxin.john@intel.com>2016-01-20 17:58:47 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-01-25 12:44:13 +0000
commit6df607bfd330111bf86e34e2fe9f16984267844d (patch)
treeed0113b0835957a2edaa7edbc8e83cc10ab43bd7 /meta/recipes-bsp/acpid/acpid
parent7a52f67e59c023e6397e124d972ac8c34627f9af (diff)
downloadpoky-6df607bfd330111bf86e34e2fe9f16984267844d.tar.gz
acpid: upgrade to 2.0.26
2.0.25 -> 2.0.26 a) Fixed an out of tree build error with musl b) Updated HOMEPAGE and BUGTRACKER info (From OE-Core rev: 9590dd6c89d6d99419cc0f0619ac4fe854150c9b) Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/acpid/acpid')
-rw-r--r--meta/recipes-bsp/acpid/acpid/0001-Fix-out-of-source-build.patch46
1 files changed, 46 insertions, 0 deletions
diff --git a/meta/recipes-bsp/acpid/acpid/0001-Fix-out-of-source-build.patch b/meta/recipes-bsp/acpid/acpid/0001-Fix-out-of-source-build.patch
new file mode 100644
index 0000000000..d1aa3aa173
--- /dev/null
+++ b/meta/recipes-bsp/acpid/acpid/0001-Fix-out-of-source-build.patch
@@ -0,0 +1,46 @@
1From 5d32b65af750e2007730f3d55a552a186aed81a6 Mon Sep 17 00:00:00 2001
2From: "Maxin B. John" <maxin.john@intel.com>
3Date: Wed, 20 Jan 2016 14:08:29 +0200
4Subject: [PATCH] Fix out of source build
5
6Since the source directory contains another config.h, the build
7directory should be searched first.
8
9Upstream-Status: Submitted
10[https://sourceforge.net/p/acpid2/tickets/10/]
11
12Signed-off-by: Maxin B. John <maxin.john@intel.com>
13---
14 sock.c | 2 +-
15 ud_socket.c | 2 +-
16 2 files changed, 2 insertions(+), 2 deletions(-)
17
18diff --git a/sock.c b/sock.c
19index 644d460..9e04501 100644
20--- a/sock.c
21+++ b/sock.c
22@@ -21,7 +21,7 @@
23 */
24
25 #ifdef HAVE_CONFIG_H
26-#include "config.h"
27+#include <config.h>
28 #endif
29
30 #include <unistd.h>
31diff --git a/ud_socket.c b/ud_socket.c
32index 1790917..83b2aa9 100644
33--- a/ud_socket.c
34+++ b/ud_socket.c
35@@ -4,7 +4,7 @@
36 */
37
38 #ifdef HAVE_CONFIG_H
39-#include "config.h"
40+#include <config.h>
41 #endif
42
43 #include <stdio.h>
44--
452.4.0
46