Created attachment 134980 [details] [review] Patch Hi, this change is required for GCCs not yet supporting __has_include and __has_include_next: diff --git a/include/bsd/sys/cdefs.h b/include/bsd/sys/cdefs.h index 044f221..b4c8f30 100644 --- a/include/bsd/sys/cdefs.h +++ b/include/bsd/sys/cdefs.h @@ -25,10 +25,10 @@ */ #ifndef __has_include -#define __has_include 1 +#define __has_include(x) 1 #endif #ifndef __has_include_next -#define __has_include_next 1 +#define __has_include_next(x) 1 #endif #ifdef LIBBSD_OVERLAY Thanks, Adam
I ran into this when building with GCC 4.7.2 and came up with the same fix, so please apply.
This has been merged and released now with 0.8.7, thanks. Closing.
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.