diff options
author | Khem Raj <raj.khem@gmail.com> | 2015-04-06 17:36:50 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-08 10:53:29 +0100 |
commit | ab16cd13deeb4b6aca082261533aa87ca69fdffd (patch) | |
tree | 9d4cf8ec62beb99e1f1ca4208e3c3143812d3441 /meta | |
parent | de32267517d61ebf4f66a859b7fe85da3549804a (diff) | |
download | poky-ab16cd13deeb4b6aca082261533aa87ca69fdffd.tar.gz |
wpa-supplicant: Replace non-standard base defines with c99 compliant ones
Makes it more portable
Change-Id: I033787934cd91243ce8f8ce3a974a157aa5cfd6a
(From OE-Core rev: 1ee774c8a70d83011a1a4ed5da9ea056ed0f0c96)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-connectivity/wpa-supplicant/wpa-supplicant.inc | 1 | ||||
-rw-r--r-- | meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/0001-linux_wext-Fix-types-for-musl.patch | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant.inc b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant.inc index f95e91c999..dae0606876 100644 --- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant.inc +++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant.inc | |||
@@ -25,6 +25,7 @@ SRC_URI = "http://hostap.epitest.fi/releases/wpa_supplicant-${PV}.tar.gz \ | |||
25 | file://wpa_supplicant.conf-sane \ | 25 | file://wpa_supplicant.conf-sane \ |
26 | file://99_wpa_supplicant \ | 26 | file://99_wpa_supplicant \ |
27 | file://fix-libnl3-host-contamination.patch \ | 27 | file://fix-libnl3-host-contamination.patch \ |
28 | file://0001-linux_wext-Fix-types-for-musl.patch \ | ||
28 | " | 29 | " |
29 | SRC_URI[md5sum] = "f2ed8fef72cf63d8d446a2d0a6da630a" | 30 | SRC_URI[md5sum] = "f2ed8fef72cf63d8d446a2d0a6da630a" |
30 | SRC_URI[sha256sum] = "eaaa5bf3055270e521b2dff64f2d203ec8040f71958b8588269a82c00c9d7b6a" | 31 | SRC_URI[sha256sum] = "eaaa5bf3055270e521b2dff64f2d203ec8040f71958b8588269a82c00c9d7b6a" |
diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/0001-linux_wext-Fix-types-for-musl.patch b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/0001-linux_wext-Fix-types-for-musl.patch new file mode 100644 index 0000000000..49a988b676 --- /dev/null +++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/0001-linux_wext-Fix-types-for-musl.patch | |||
@@ -0,0 +1,38 @@ | |||
1 | From 159db445dc4cb0af5f6ad85f3a146ad137db5057 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Fri, 3 Apr 2015 20:38:21 -0700 | ||
4 | Subject: [PATCH] linux_wext: Fix types for musl | ||
5 | |||
6 | | ../src/drivers/linux_wext.h:24:9: error: unknown type name '__uint32_t' | ||
7 | | typedef __uint32_t __u32; | ||
8 | |||
9 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
10 | Upstream-Status: Pending | ||
11 | --- | ||
12 | src/drivers/linux_wext.h | 10 +++++----- | ||
13 | 1 file changed, 5 insertions(+), 5 deletions(-) | ||
14 | |||
15 | diff --git a/src/drivers/linux_wext.h b/src/drivers/linux_wext.h | ||
16 | index 55cf955..e66df91 100644 | ||
17 | --- a/src/drivers/linux_wext.h | ||
18 | +++ b/src/drivers/linux_wext.h | ||
19 | @@ -21,11 +21,11 @@ | ||
20 | |||
21 | #include <sys/types.h> | ||
22 | #include <net/if.h> | ||
23 | -typedef __uint32_t __u32; | ||
24 | -typedef __int32_t __s32; | ||
25 | -typedef __uint16_t __u16; | ||
26 | -typedef __int16_t __s16; | ||
27 | -typedef __uint8_t __u8; | ||
28 | +typedef u_int32_t __u32; | ||
29 | +typedef int32_t __s32; | ||
30 | +typedef u_int16_t __u16; | ||
31 | +typedef int16_t __s16; | ||
32 | +typedef u_int8_t __u8; | ||
33 | #ifndef __user | ||
34 | #define __user | ||
35 | #endif /* __user */ | ||
36 | -- | ||
37 | 2.1.4 | ||
38 | |||