From b79f0a7caabbf6e3523dad0a284466a672bc9940 Mon Sep 17 00:00:00 2001 From: OBATA Akio Date: Thu, 9 Jul 2020 11:00:32 +0900 Subject: [PATCH] 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 to glibc at pre 2.3 release with `__RES == 19991006`. Signed-off-by: OBATA Akio --- src/network/qdns.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/network/qdns.cpp b/src/network/qdns.cpp index 780d119a..9dcd73da 100644 --- a/src/network/qdns.cpp +++ b/src/network/qdns.cpp @@ -102,7 +102,7 @@ static TQ_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