Commit 7f0d242b authored by David Conrad's avatar David Conrad Committed by Diego Biurrun

Fix compilation on Mac OS X 10.4: Defining _POSIX_C_SOURCE hides the u_char &

similar typedefs that sysctl.h needs. Since sysctl() itself isn't POSIX
undefining _POSIX_C_SOURCE for check_altivec.c seems the best way to fix this.
patch by David Conrad lessen42 at gmail com

Originally committed as revision 15306 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 43c16478
......@@ -23,6 +23,7 @@
*/
#ifdef __APPLE__
#undef _POSIX_C_SOURCE
#include <sys/sysctl.h>
#elif __AMIGAOS4__
#include <exec/exec.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