From 915685e01b7c065a56a09cbba9516d3c96f0d744 Mon Sep 17 00:00:00 2001 From: Bart S Date: Sat, 1 May 2021 17:23:25 +0200 Subject: [PATCH] Updated GLIBC check in configure.ac (#175) The current GLIBC check does not consider we may see glibc 3.0 in the future. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index f216c218..fb0f4c0b 100644 --- a/configure.ac +++ b/configure.ac @@ -411,7 +411,7 @@ yes # http://www.v6.linux.or.jp/ AC_EGREP_CPP(yes, [ #include -#if defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1 +#if defined(__GLIBC__) && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1)) yes #endif], [ipv6type=$i; -- 2.47.2