summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/socat/socat/0001-define-NETDB_INTERNAL-to-1-if-not-available.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-connectivity/socat/socat/0001-define-NETDB_INTERNAL-to-1-if-not-available.patch')
-rw-r--r--meta/recipes-connectivity/socat/socat/0001-define-NETDB_INTERNAL-to-1-if-not-available.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/socat/socat/0001-define-NETDB_INTERNAL-to-1-if-not-available.patch b/meta/recipes-connectivity/socat/socat/0001-define-NETDB_INTERNAL-to-1-if-not-available.patch
new file mode 100644
index 0000000000..4bbd36766d
--- /dev/null
+++ b/meta/recipes-connectivity/socat/socat/0001-define-NETDB_INTERNAL-to-1-if-not-available.patch
@@ -0,0 +1,32 @@
1From e6a7d96fa3675bdd3f4d7a3d7682381789eef22f Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 15 Feb 2016 20:25:34 +0000
4Subject: [PATCH] define NETDB_INTERNAL to -1 if not available
5
6helps build with musl
7
8Signed-off-by: Khem Raj <raj.khem@gmail.com>
9---
10Upstream-Status: Pending
11
12 compat.h | 4 ++++
13 1 file changed, 4 insertions(+)
14
15diff --git a/compat.h b/compat.h
16index c8bee4d..bfb013a 100644
17--- a/compat.h
18+++ b/compat.h
19@@ -666,6 +666,10 @@ typedef int sig_atomic_t;
20 # define NETDB_INTERNAL h_NETDB_INTERNAL
21 #endif
22
23+#if !defined(NETDB_INTERNAL)
24+# define NETDB_INTERNAL (-1)
25+#endif
26+
27 #ifndef INET_ADDRSTRLEN
28 # define INET_ADDRSTRLEN sizeof(struct sockaddr_in)
29 #endif
30--
312.7.1
32