blob: 1dedbd3b9b9e8535b074cef51005e43a44ac1aed [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001From 6a2cadd6b70cb40ac74fc0d0f8557b914bd38ac2 Mon Sep 17 00:00:00 2001
2From: Chen Qi <Qi.Chen@windriver.com>
3Date: Mon, 2 Jul 2018 13:22:41 +0800
4Subject: [PATCH 09/24] socket-util: don't fail if libc doesn't support IDN
5
6Upstream-Status: Inappropriate [musl specific]
7
8Signed-off-by: Emil Renner Berthing <systemd@esmil.dk>
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
10Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
11---
12 src/basic/socket-util.c | 10 ++++++++++
13 1 file changed, 10 insertions(+)
14
15diff --git a/src/basic/socket-util.c b/src/basic/socket-util.c
Brad Bishopc342db32019-05-15 21:57:59 -040016index 904bafb..a7a009d 100644
Brad Bishop19323692019-04-05 15:28:33 -040017--- a/src/basic/socket-util.c
18+++ b/src/basic/socket-util.c
Brad Bishopc342db32019-05-15 21:57:59 -040019@@ -34,6 +34,16 @@
20 #include "user-util.h"
Brad Bishop19323692019-04-05 15:28:33 -040021 #include "utf8.h"
Brad Bishop19323692019-04-05 15:28:33 -040022
23+/* Don't fail if the standard library
24+ * doesn't support IDN */
25+#ifndef NI_IDN
26+#define NI_IDN 0
27+#endif
28+
29+#ifndef NI_IDN_USE_STD3_ASCII_RULES
30+#define NI_IDN_USE_STD3_ASCII_RULES 0
31+#endif
32+
33 #if ENABLE_IDN
34 # define IDN_FLAGS NI_IDN
35 #else
36--
Brad Bishopc342db32019-05-15 21:57:59 -0400372.11.0
Brad Bishop19323692019-04-05 15:28:33 -040038