diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-12-23 16:34:46 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-12-23 16:34:46 +0100 |
commit | 7de733b7521a92038fbb2372865693c623db94c1 (patch) | |
tree | ed9facd0241d84aef5a06d7364f2a385bc8af02a | |
parent | 5c33a9a5c138324e9405bf680b950cfb7f02f3ee (diff) | |
download | ffmpeg-7de733b7521a92038fbb2372865693c623db94c1.tar.gz |
pthread: sysctl.h needs param.h on openbsd
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/pthread.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/pthread.c b/libavcodec/pthread.c index 653fb0f200..5957804004 100644 --- a/libavcodec/pthread.c +++ b/libavcodec/pthread.c @@ -38,6 +38,7 @@ #include <windows.h> #elif HAVE_SYSCTL #include <sys/types.h> +#include <sys/param.h> #include <sys/sysctl.h> #endif |