QDnsLookup: Fix build with uClibc
uClibc doesn't have a nsmap member in __res_state. Since it also doesn't have res_nquery() which is mandatory for QDnsLookup, we can simply disable the code to fix the build. Change-Id: Ia872f535519aca3a2de763548c6dd0e3e0ee20d4 Reviewed-by: Jørgen Lind <jorgen.lind@digia.com> Reviewed-by: Mandeep Sandhu <mandeepsandhu.chd@gmail.com>
This commit is contained in:
parent
59d6871ae3
commit
6bec36dd38
@ -160,9 +160,11 @@ void QDnsLookupRunnable::query(const int requestType, const QByteArray &requestN
|
|||||||
Q_CHECK_PTR(ns);
|
Q_CHECK_PTR(ns);
|
||||||
state._u._ext.nsaddrs[0] = ns;
|
state._u._ext.nsaddrs[0] = ns;
|
||||||
}
|
}
|
||||||
|
#ifndef __UCLIBC__
|
||||||
// Set nsmap[] to indicate that nsaddrs[0] is an IPv6 address
|
// Set nsmap[] to indicate that nsaddrs[0] is an IPv6 address
|
||||||
// See: https://sourceware.org/ml/libc-hacker/2002-05/msg00035.html
|
// See: https://sourceware.org/ml/libc-hacker/2002-05/msg00035.html
|
||||||
state._u._ext.nsmap[0] = MAXNS + 1;
|
state._u._ext.nsmap[0] = MAXNS + 1;
|
||||||
|
#endif
|
||||||
state._u._ext.nscount6 = 1;
|
state._u._ext.nscount6 = 1;
|
||||||
ns->sin6_family = AF_INET6;
|
ns->sin6_family = AF_INET6;
|
||||||
ns->sin6_port = htons(53);
|
ns->sin6_port = htons(53);
|
||||||
|
Loading…
Reference in New Issue
Block a user