diff options
author | Dave Yeo <dave.r.yeo@gmail.com> | 2012-12-28 17:53:43 -0800 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-12-29 18:56:33 +0100 |
commit | 925c9f444fc9972f3364cd44e7c9dd9250f772c3 (patch) | |
tree | 94f74e07863ebd5bd35ee22391b900c0a597c860 /libavformat/network.c | |
parent | 53228f47d6892b5c93db3df6c9a77aa88b8b7b5c (diff) | |
download | ffmpeg-925c9f444fc9972f3364cd44e7c9dd9250f772c3.tar.gz |
Fix OS/2 threading
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/network.c')
-rw-r--r-- | libavformat/network.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/network.c b/libavformat/network.c index 64bd0ed9ed..ceed719356 100644 --- a/libavformat/network.c +++ b/libavformat/network.c @@ -28,6 +28,8 @@ #if HAVE_THREADS #if HAVE_PTHREADS #include <pthread.h> +#elif HAVE_OS2THREADS +#include "libavcodec/os2threads.h" #else #include "libavcodec/w32pthreads.h" #endif |