diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-01-15 13:00:45 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2013-01-15 21:39:51 +0100 |
commit | 386992225e098c636f737dce161cccc6db3a92f4 (patch) | |
tree | 33ac5131481c7a754436072bab27417a518d76dd | |
parent | 552100207b2bb40b8205edae359698bcdeff81a3 (diff) | |
download | libtasn1-386992225e098c636f737dce161cccc6db3a92f4.tar.gz libtasn1-386992225e098c636f737dce161cccc6db3a92f4.tar.bz2 libtasn1-386992225e098c636f737dce161cccc6db3a92f4.zip |
Fix check for Android x86
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
-rw-r--r-- | gl/stdint.in.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gl/stdint.in.h b/gl/stdint.in.h index e2a0eb1..2f80268 100644 --- a/gl/stdint.in.h +++ b/gl/stdint.in.h @@ -39,7 +39,7 @@ Ideally we should test __BIONIC__ here, but it is only defined after <sys/cdefs.h> has been included; hence test __ANDROID__ instead. */ #if defined __ANDROID__ \ - && defined _SYS_TYPES_H_ && !defined _SSIZE_T_DEFINED_ + && defined _SYS_TYPES_H_ && !defined __need_size_t # @INCLUDE_NEXT@ @NEXT_STDINT_H@ #else |