libtasn1-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU libtasn1 branch, master, updated. libtasn1_3_2-6-g3869922


From: Nikos Mavrogiannopoulos
Subject: [SCM] GNU libtasn1 branch, master, updated. libtasn1_3_2-6-g3869922
Date: Tue, 15 Jan 2013 20:40:03 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU libtasn1".

http://git.savannah.gnu.org/cgit/libtasn1.git/commit/?id=386992225e098c636f737dce161cccc6db3a92f4

The branch, master has been updated
       via  386992225e098c636f737dce161cccc6db3a92f4 (commit)
       via  552100207b2bb40b8205edae359698bcdeff81a3 (commit)
       via  76775b5b3717ef59fc8d272d9ed7d56dba038cbf (commit)
      from  40ea6d9515d7436cfadb85d21cdf5a6539698759 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 386992225e098c636f737dce161cccc6db3a92f4
Author: Andoni Morales Alastruey <address@hidden>
Date:   Tue Jan 15 13:00:45 2013 +0100

    Fix check for Android x86
    
    Signed-off-by: Nikos Mavrogiannopoulos <address@hidden>

commit 552100207b2bb40b8205edae359698bcdeff81a3
Author: Andoni Morales Alastruey <address@hidden>
Date:   Tue Jan 15 12:19:49 2013 +0100

    Fix includes for Bionic X86
    
    Signed-off-by: Nikos Mavrogiannopoulos <address@hidden>

commit 76775b5b3717ef59fc8d272d9ed7d56dba038cbf
Author: Andoni Morales Alastruey <address@hidden>
Date:   Tue Jan 15 12:19:39 2013 +0100

    Fix include for Bionic, where SIZE_MAX is in limits.h
    
    Signed-off-by: Nikos Mavrogiannopoulos <address@hidden>

-----------------------------------------------------------------------

Summary of changes:
 gl/read-file.c |    4 ++++
 gl/stdint.in.h |    2 +-
 lib/libtasn1.h |    2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/gl/read-file.c b/gl/read-file.c
index 0d5ab8b..87a7f36 100644
--- a/gl/read-file.c
+++ b/gl/read-file.c
@@ -26,7 +26,11 @@
 #include <stdio.h>
 
 /* Get SIZE_MAX.  */
+#ifdef __BIONIC__
+#include <limits.h>
+#else
 #include <stdint.h>
+#endif
 
 /* Get malloc, realloc, free. */
 #include <stdlib.h>
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
 
diff --git a/lib/libtasn1.h b/lib/libtasn1.h
index 494a07d..5cdc3ff 100644
--- a/lib/libtasn1.h
+++ b/lib/libtasn1.h
@@ -35,9 +35,9 @@
 #  endif
 # endif
 
-#include <stdio.h>             /* for FILE* */
 #include <sys/types.h>
 #include <time.h>
+#include <stdio.h>             /* for FILE* */
 
 #ifdef __cplusplus
 extern "C"


hooks/post-receive
-- 
GNU libtasn1



reply via email to

[Prev in Thread] Current Thread [Next in Thread]