Hi,
or maybe when it built, IPv6 support was being excluded, and a change in the headers has brought IPv6 support in and exposed the problem.
I expect that it is the cause. Please just extend the check bellow to get needed types ... Petr --- src/dnsmasq.h +++ src/dnsmasq.h @@ -23,7 +23,7 @@ #endif /* Get linux C library versions. */ -#ifdef __linux__ +#if defined(__linux__) || defined(__GLIBC__) # define _GNU_SOURCE # include <features.h> #endif -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

