diff options
author | Khem Raj <raj.khem@gmail.com> | 2015-12-14 00:15:47 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-22 23:42:45 +0000 |
commit | 27459f5e4a9b86b0cd751f6ec3b92071e4316cc0 (patch) | |
tree | 22d258c4cf35e8a74201b77492e0af56f3379dcd /meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6 | |
parent | 1949b128b87f89a56a2794ad056f2e4f4dbf6a3c (diff) | |
download | openembedded-core-27459f5e4a9b86b0cd751f6ec3b92071e4316cc0.tar.gz openembedded-core-27459f5e4a9b86b0cd751f6ec3b92071e4316cc0.tar.bz2 openembedded-core-27459f5e4a9b86b0cd751f6ec3b92071e4316cc0.zip |
tcp-wrappers: Fix build with musl
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6')
-rw-r--r-- | meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/musl-decls.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/musl-decls.patch b/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/musl-decls.patch new file mode 100644 index 0000000000..eee640e8a8 --- /dev/null +++ b/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/musl-decls.patch @@ -0,0 +1,31 @@ +__BEGIN_DECLS/__END_DECLS are BSD specific and not defined in musl +glibc and uclibc had sys/cdefs.h doing it. + +Upstream-Status: Pending +Signed-off-by: Khem Raj <raj.khem@gmail.com> + +Index: tcp_wrappers_7.6/tcpd.h +=================================================================== +--- tcp_wrappers_7.6.orig/tcpd.h ++++ tcp_wrappers_7.6/tcpd.h +@@ -11,7 +11,9 @@ + #include <netinet/in.h> + #include <stdio.h> + +-__BEGIN_DECLS ++#ifdef __cplusplus ++extern "C" { ++#endif + + /* Structure to describe one communications endpoint. */ + +@@ -252,6 +254,8 @@ extern char *fix_strtok(); + extern char *my_strtok(); + #endif + +-__END_DECLS ++#ifdef __cplusplus ++} ++#endif + + #endif |