Commit 8ef9e0dc authored by fbarchard@google.com's avatar fbarchard@google.com

ifdef around stdint on android for x86 builds

BUG=none
TEST=none
Review URL: https://webrtc-codereview.appspot.com/930022

git-svn-id: http://libyuv.googlecode.com/svn/trunk@495 16f28f9a-4ce2-e073-06de-1de4eb20be90
parent 8e50e619
Name: libyuv
URL: http://code.google.com/p/libyuv/
Version: 494
Version: 495
License: BSD
License File: LICENSE
......
......@@ -14,8 +14,12 @@
#include <stddef.h> // for NULL, size_t
#if !(defined(_MSC_VER) && (_MSC_VER < 1600))
#if defined(__ANDROID__)
#include <sys/types.h> // for uintptr_t on x86
#else
#include <stdint.h> // for uintptr_t
#endif
#endif
#ifndef INT_TYPES_DEFINED
#define INT_TYPES_DEFINED
......
......@@ -11,6 +11,6 @@
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
#define INCLUDE_LIBYUV_VERSION_H_
#define LIBYUV_VERSION 494
#define LIBYUV_VERSION 495
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
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