diff options
author | Khem Raj <raj.khem@gmail.com> | 2016-01-02 21:51:37 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-22 23:42:49 +0000 |
commit | 916ca791c70ec2bddae7623e77b7e39b6c591907 (patch) | |
tree | 7c041cafee35552944c6ebef9d090c469cfaedd5 /meta/recipes-core/console-tools | |
parent | a590e541338d49130aaae5339856d31badd56719 (diff) | |
download | openembedded-core-916ca791c70ec2bddae7623e77b7e39b6c591907.tar.gz openembedded-core-916ca791c70ec2bddae7623e77b7e39b6c591907.tar.bz2 openembedded-core-916ca791c70ec2bddae7623e77b7e39b6c591907.zip |
console-tools: Include sys/types.h for u_char and u_short defs
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta/recipes-core/console-tools')
-rw-r--r-- | meta/recipes-core/console-tools/console-tools-0.3.2/0001-kbdtools-Include-sys-types.h-for-u_char-and-u_short-.patch | 44 | ||||
-rw-r--r-- | meta/recipes-core/console-tools/console-tools_0.3.2.bb | 1 |
2 files changed, 45 insertions, 0 deletions
diff --git a/meta/recipes-core/console-tools/console-tools-0.3.2/0001-kbdtools-Include-sys-types.h-for-u_char-and-u_short-.patch b/meta/recipes-core/console-tools/console-tools-0.3.2/0001-kbdtools-Include-sys-types.h-for-u_char-and-u_short-.patch new file mode 100644 index 0000000000..64b5b044dd --- /dev/null +++ b/meta/recipes-core/console-tools/console-tools-0.3.2/0001-kbdtools-Include-sys-types.h-for-u_char-and-u_short-.patch @@ -0,0 +1,44 @@ +From 0fd5dda51d68e1ec2a87e27b5ed0dff3503b4681 Mon Sep 17 00:00:00 2001 +From: Khem Raj <raj.khem@gmail.com> +Date: Thu, 31 Dec 2015 08:12:38 +0000 +Subject: [PATCH] kbdtools: Include sys/types.h for u_char and u_short + definition + +on musl this gets exposed since sys/types.h is not +included via some other indirect inclusion as is the case with glibc + +Signed-off-by: Khem Raj <raj.khem@gmail.com> +--- +Upstream-Status: Pending + + kbdtools/dumpkeys.c | 1 + + kbdtools/loadkeys.y | 1 + + 2 files changed, 2 insertions(+) + +diff --git a/kbdtools/dumpkeys.c b/kbdtools/dumpkeys.c +index 6159d49..c19fb21 100644 +--- a/kbdtools/dumpkeys.c ++++ b/kbdtools/dumpkeys.c +@@ -26,6 +26,7 @@ + #include <errno.h> + #include <sysexits.h> + #include <sys/ioctl.h> ++#include <sys/types.h> + #include <linux/types.h> + #include <linux/kd.h> + #include <linux/keyboard.h> +diff --git a/kbdtools/loadkeys.y b/kbdtools/loadkeys.y +index b6a8e01..4468f77 100644 +--- a/kbdtools/loadkeys.y ++++ b/kbdtools/loadkeys.y +@@ -71,6 +71,7 @@ + #include <linux/kd.h> + #include <linux/keyboard.h> + #include <sys/ioctl.h> ++#include <sys/types.h> + #include <ctype.h> + #include <sysexits.h> + #include <signal.h> +-- +2.6.4 + diff --git a/meta/recipes-core/console-tools/console-tools_0.3.2.bb b/meta/recipes-core/console-tools/console-tools_0.3.2.bb index 7e14b31a00..d14d683d1b 100644 --- a/meta/recipes-core/console-tools/console-tools_0.3.2.bb +++ b/meta/recipes-core/console-tools/console-tools_0.3.2.bb @@ -14,6 +14,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/lct/console-tools-${PV}.tar.gz \ file://nodocs.patch \ file://fix-libconsole-linking.patch \ file://no-dep-on-libfl.patch \ + file://0001-kbdtools-Include-sys-types.h-for-u_char-and-u_short-.patch \ file://lcmessage.m4 \ file://Makevars" |