Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-12-23 19:34:46 +0400
committerMichael Niedermayer <michaelni@gmx.at>2011-12-23 19:34:46 +0400
commit7de733b7521a92038fbb2372865693c623db94c1 (patch)
treeed9facd0241d84aef5a06d7364f2a385bc8af02a /libavcodec/pthread.c
parent5c33a9a5c138324e9405bf680b950cfb7f02f3ee (diff)
pthread: sysctl.h needs param.h on openbsd
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/pthread.c')
-rw-r--r--libavcodec/pthread.c1
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