1From 8d035e84c2edb44461ef4df9cdef0a6dfce0a1d7 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 24 Aug 2018 12:56:22 -0700
4Subject: [PATCH 07/10] Support deprecated resolver functions
5
6Needed for  musl libc
7
8Upstream-Status: Pending
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
10---
11 src/mongo/util/dns_query_posix-impl.h | 6 ++++++
12 1 file changed, 6 insertions(+)
13
14diff --git a/src/mongo/util/dns_query_posix-impl.h b/src/mongo/util/dns_query_posix-impl.h
15index a5e3629..fb29d2d 100644
16--- a/src/mongo/util/dns_query_posix-impl.h
17+++ b/src/mongo/util/dns_query_posix-impl.h
18@@ -54,6 +54,12 @@
19
20 #include <boost/noncopyable.hpp>
21
22+#ifndef res_ninit
23+#define res_nclose(arg)
24+#define res_ninit(arg)    res_init()
25+#define res_nsearch(sta, nam, clas, typ, ans, alen)  res_search(nam, clas, typ, ans, alen)
26+#endif
27+
28 namespace mongo {
29 namespace dns {
30 // The anonymous namespace is safe, in this header, as it is not really a header.  It is only used
31--
322.7.4
33
34