diff options
| -rw-r--r-- | meta-networking/recipes-connectivity/samba/samba/cmocka-uintptr_t.patch | 51 | ||||
| -rw-r--r-- | meta-networking/recipes-connectivity/samba/samba_4.8.4.bb | 1 |
2 files changed, 52 insertions, 0 deletions
diff --git a/meta-networking/recipes-connectivity/samba/samba/cmocka-uintptr_t.patch b/meta-networking/recipes-connectivity/samba/samba/cmocka-uintptr_t.patch new file mode 100644 index 0000000000..5c299d617b --- /dev/null +++ b/meta-networking/recipes-connectivity/samba/samba/cmocka-uintptr_t.patch | |||
| @@ -0,0 +1,51 @@ | |||
| 1 | From 5bd7b5d04435bd593349825973ce32290f5f604d Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Changqing Li <changqing.li@windriver.com> | ||
| 3 | Date: Wed, 25 Jul 2018 09:55:25 +0800 | ||
| 4 | Subject: [PATCH] samba: cmocka.h: fix musl libc conflicting types error | ||
| 5 | |||
| 6 | Fix build on qemumips64(el) | ||
| 7 | |||
| 8 | taken from: | ||
| 9 | [PATCH] libldb: fix musl libc conflicting types error | ||
| 10 | |||
| 11 | /third_party/cmocka/cmocka.h:126:28: error: conflicting types for 'uintptr_t' | ||
| 12 | typedef unsigned int uintptr_t; | ||
| 13 | ^~~~~~~~~ | ||
| 14 | use __DEFINED_uintptr_t in alltypes.h to check if uintptr already defined | ||
| 15 | |||
| 16 | Upstream-Status: Pending | ||
| 17 | |||
| 18 | Signed-off-by: Changqing Li <changqing.li@windriver.com> | ||
| 19 | Signed-off-by: Andrea Adami <andrea.adami@gmail.com> | ||
| 20 | --- | ||
| 21 | third_party/cmocka/cmocka.h | 7 +++---- | ||
| 22 | 1 file changed, 3 insertions(+), 4 deletions(-) | ||
| 23 | |||
| 24 | diff --git a/third_party/cmocka/cmocka.h b/third_party/cmocka/cmocka.h | ||
| 25 | index 4fd82a9..5443a08 100644 | ||
| 26 | --- a/third_party/cmocka/cmocka.h | ||
| 27 | +++ b/third_party/cmocka/cmocka.h | ||
| 28 | @@ -110,7 +110,7 @@ typedef uintmax_t LargestIntegralType; | ||
| 29 | ((LargestIntegralType)(value)) | ||
| 30 | |||
| 31 | /* Smallest integral type capable of holding a pointer. */ | ||
| 32 | -#if !defined(_UINTPTR_T) && !defined(_UINTPTR_T_DEFINED) | ||
| 33 | +#if !defined(__DEFINED_uintptr_t) | ||
| 34 | # if defined(_WIN32) | ||
| 35 | /* WIN32 is an ILP32 platform */ | ||
| 36 | typedef unsigned int uintptr_t; | ||
| 37 | @@ -134,9 +134,8 @@ typedef uintmax_t LargestIntegralType; | ||
| 38 | # endif /* __WORDSIZE */ | ||
| 39 | # endif /* _WIN32 */ | ||
| 40 | |||
| 41 | -# define _UINTPTR_T | ||
| 42 | -# define _UINTPTR_T_DEFINED | ||
| 43 | -#endif /* !defined(_UINTPTR_T) || !defined(_UINTPTR_T_DEFINED) */ | ||
| 44 | +# define __DEFINED_uintptr_t | ||
| 45 | +#endif /* !defined(__DEFINED_uintptr_t) */ | ||
| 46 | |||
| 47 | /* Perform an unsigned cast to uintptr_t. */ | ||
| 48 | #define cast_to_pointer_integral_type(value) \ | ||
| 49 | -- | ||
| 50 | 2.7.4 | ||
| 51 | |||
diff --git a/meta-networking/recipes-connectivity/samba/samba_4.8.4.bb b/meta-networking/recipes-connectivity/samba/samba_4.8.4.bb index da0ac322a7..f1aaeb83d9 100644 --- a/meta-networking/recipes-connectivity/samba/samba_4.8.4.bb +++ b/meta-networking/recipes-connectivity/samba/samba_4.8.4.bb | |||
| @@ -28,6 +28,7 @@ SRC_URI = "${SAMBA_MIRROR}/stable/samba-${PV}.tar.gz \ | |||
| 28 | SRC_URI_append_libc-musl = " \ | 28 | SRC_URI_append_libc-musl = " \ |
| 29 | file://samba-pam.patch \ | 29 | file://samba-pam.patch \ |
| 30 | file://samba-4.3.9-remove-getpwent_r.patch \ | 30 | file://samba-4.3.9-remove-getpwent_r.patch \ |
| 31 | file://cmocka-uintptr_t.patch \ | ||
| 31 | " | 32 | " |
| 32 | 33 | ||
| 33 | SRC_URI[md5sum] = "ca5bfbebd8d9eb95506e16594b2bbee2" | 34 | SRC_URI[md5sum] = "ca5bfbebd8d9eb95506e16594b2bbee2" |
