+2021-01-10 Niels Möller <nisse@lysator.liu.se>
+
+ * fat-ppc.c: Don't use __GLIBC_PREREQ in the same preprocessor
+ conditional as defined(__GLIBC_PREREQ), but move to a nested #if
+ conditional. Fixes compile error on OpenBSD/powerpc64, reported by
+ Jasper Lievisse Adriaanse.
+
2021-01-04 Niels Möller <nisse@lysator.liu.se>
* Released Nettle-3.7.
#if defined(_AIX)
# include <sys/systemcfg.h>
-#elif defined(__linux__) && defined(__GLIBC__) && \
- defined(__GLIBC_PREREQ) && __GLIBC_PREREQ(2, 16)
-# define USE_GETAUXVAL 1
-# include <asm/cputable.h>
-# include <sys/auxv.h>
+#elif defined(__linux__) && defined(__GLIBC__) && defined(__GLIBC_PREREQ)
+# if __GLIBC_PREREQ(2, 16)
+# define USE_GETAUXVAL 1
+# include <asm/cputable.h>
+# include <sys/auxv.h>
+# endif
#elif defined(__FreeBSD__)
# include <machine/cpu.h>
# ifdef PPC_FEATURE2_HAS_VEC_CRYPTO