Commit 3028b6ed authored by Brad's avatar Brad Committed by Luca Barbato

os: fix OpenBSD/PowerPC compilation

When attempting to re-enable the AltiVec support it was noticed
that we need to undefine _POSIX_C_SOURCE to appease the headers
for ff_get_cpu_flags_ppc() to be able to compile.
Signed-off-by: 's avatarLuca Barbato <lu_zero@gentoo.org>
parent 73389754
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
#undef _POSIX_C_SOURCE #undef _POSIX_C_SOURCE
#include <sys/sysctl.h> #include <sys/sysctl.h>
#elif defined(__OpenBSD__) #elif defined(__OpenBSD__)
#undef _POSIX_C_SOURCE
#include <sys/param.h> #include <sys/param.h>
#include <sys/sysctl.h> #include <sys/sysctl.h>
#include <machine/cpu.h> #include <machine/cpu.h>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment