summaryrefslogtreecommitdiff
path: root/libavformat/os_support.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-10-10 02:30:39 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-10-10 02:32:32 +0200
commit27123a77c111eed272a11791354831961bc6507c (patch)
tree073ea405b2ab13390615b4d689e7cb4f1ffd545b /libavformat/os_support.h
parent9665a0fdf680246468bf3e55524c9b4e610ab506 (diff)
avformat/os_support: include unistd.h before defining lseek to lseek64 on android
fixes build failure Found-by: James Almer Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/os_support.h')
-rw-r--r--libavformat/os_support.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/os_support.h b/libavformat/os_support.h
index 0b9fd49323..bc72e96a4c 100644
--- a/libavformat/os_support.h
+++ b/libavformat/os_support.h
@@ -57,6 +57,9 @@
#endif
#ifdef __ANDROID__
+# if HAVE_UNISTD_H
+# include <unistd.h>
+# endif
# ifdef lseek
# undef lseek
# endif