mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 15:33:55 +02:00
eb7c107244
a __GNUC__ version test, to this:
#if (defined(__GNUC__) && (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))) || \
(defined(__clang__) && __has_builtin(__builtin_ctz))
The __has_builtin fails on base-gcc, but also this extra check isn't
useful on base-clang archs either because __GNUC__ is defined to 4 there
anyway, so remove it.