summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/network/kernel/qdnslookup_unix.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/network/kernel/qdnslookup_unix.cpp b/src/network/kernel/qdnslookup_unix.cpp
index 7767dac45a..300f99d232 100644
--- a/src/network/kernel/qdnslookup_unix.cpp
+++ b/src/network/kernel/qdnslookup_unix.cpp
@@ -54,6 +54,8 @@
QT_BEGIN_NAMESPACE
+#ifndef QT_NO_LIBRARY
+
typedef int (*dn_expand_proto)(const unsigned char *, const unsigned char *, const unsigned char *, char *, int);
static dn_expand_proto local_dn_expand = 0;
typedef void (*res_nclose_proto)(res_state);
@@ -319,4 +321,17 @@ void QDnsLookupRunnable::query(const int requestType, const QByteArray &requestN
}
}
+#else
+
+void QDnsLookupRunnable::query(const int requestType, const QByteArray &requestName, QDnsLookupReply *reply)
+{
+ Q_UNUSED(requestType)
+ Q_UNUSED(requestName)
+ reply->error = QDnsLookup::ResolverError;
+ reply->errorString = tr("Resolver library can't be loaded: No runtime library loading support");
+ return;
+}
+
+#endif /* ifndef QT_NO_LIBRARY */
+
QT_END_NAMESPACE