summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorOBATA Akio <obache@wizdas.com>2020-07-08 17:22:01 +0900
committerTDE Gitea <gitea@mirror.git.trinitydesktop.org>2021-02-02 00:24:17 +0000
commitb676c7f90b894b7c715d924c53b9dc4b4fef4589 (patch)
treed66d347b9b4dc4bf8c54b69f61a6347f498474f2 /src
parent0a9cd6f754e4b5a4c52ecb1be37e09328016fa57 (diff)
downloadqt3-b676c7f90b894b7c715d924c53b9dc4b4fef4589.tar.gz
qt3-b676c7f90b894b7c715d924c53b9dc4b4fef4589.zip
Improve modern res API available condition
`__RES` is usable to check release date of resolver library. Such modern res API appeared in BIND-8.2.0 libbind with __RES == 19980901, it was refrected as BIND-8.2.2-P5 in glibc in pre 2.3 release with __RES == 19991006. Signed-off-by: OBATA Akio <obache@wizdas.com>
Diffstat (limited to 'src')
-rw-r--r--src/network/qdns.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/qdns.cpp b/src/network/qdns.cpp
index 0b41d6c..223ef0b 100644
--- a/src/network/qdns.cpp
+++ b/src/network/qdns.cpp
@@ -102,7 +102,7 @@ static Q_UINT32 now()
return 0;
}
-#if defined(__GLIBC__) && ((__GLIBC__ > 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 3)))
+#if defined(__RES) && (__RES >= 19980901)
#define Q_MODERN_RES_API
#else
#endif