diff options
author | Raphael Moll <raphael@google.com> | 2010-10-14 13:41:46 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2010-10-14 13:41:46 -0700 |
commit | 7e65ede62065925e29b5b18f253758bb280f9383 (patch) | |
tree | 0e03f98eb036f07a6221e120e51928ac0592ae10 | |
parent | 1693c32f42e69634b52df1bf827fd81dc3abda46 (diff) | |
parent | 9cd8057b6e8f5fc1254a4ed19e8127b5091b5dce (diff) | |
download | system_core-7e65ede62065925e29b5b18f253758bb280f9383.zip system_core-7e65ede62065925e29b5b18f253758bb280f9383.tar.gz system_core-7e65ede62065925e29b5b18f253758bb280f9383.tar.bz2 |
am 9cd8057b: Merge "Define HAVE_STAT_ST_MTIM and disable it under MinGW/Cygwin." into gingerbread
Merge commit '9cd8057b6e8f5fc1254a4ed19e8127b5091b5dce' into gingerbread-plus-aosp
* commit '9cd8057b6e8f5fc1254a4ed19e8127b5091b5dce':
Define HAVE_STAT_ST_MTIM and disable it under MinGW/Cygwin.
-rw-r--r-- | include/arch/darwin-x86/AndroidConfig.h | 10 | ||||
-rw-r--r-- | include/arch/freebsd-x86/AndroidConfig.h | 9 | ||||
-rw-r--r-- | include/arch/linux-arm/AndroidConfig.h | 10 | ||||
-rw-r--r-- | include/arch/linux-sh/AndroidConfig.h | 10 | ||||
-rw-r--r-- | include/arch/linux-x86/AndroidConfig.h | 10 | ||||
-rw-r--r-- | include/arch/target_linux-x86/AndroidConfig.h | 10 | ||||
-rw-r--r-- | include/arch/windows/AndroidConfig.h | 10 |
7 files changed, 69 insertions, 0 deletions
diff --git a/include/arch/darwin-x86/AndroidConfig.h b/include/arch/darwin-x86/AndroidConfig.h index c2c1f18..2bb44c6 100644 --- a/include/arch/darwin-x86/AndroidConfig.h +++ b/include/arch/darwin-x86/AndroidConfig.h @@ -290,4 +290,14 @@ */ #define HAVE_PREAD 1 +/* + * Define if we have st_mtim in struct stat + */ +#define HAVE_STAT_ST_MTIM 1 + +/* + * Define if printf() supports %zd for size_t arguments + */ +#define HAVE_PRINTF_ZD 1 + #endif /*_ANDROID_CONFIG_H*/ diff --git a/include/arch/freebsd-x86/AndroidConfig.h b/include/arch/freebsd-x86/AndroidConfig.h index a2a9e67..992b689 100644 --- a/include/arch/freebsd-x86/AndroidConfig.h +++ b/include/arch/freebsd-x86/AndroidConfig.h @@ -348,5 +348,14 @@ * Define if pread() exists */ #define HAVE_PREAD 1 +/* + * Define if we have st_mtim in struct stat + */ +#define HAVE_STAT_ST_MTIM 1 + +/* + * Define if printf() supports %zd for size_t arguments + */ +#define HAVE_PRINTF_ZD 1 #endif /*_ANDROID_CONFIG_H*/ diff --git a/include/arch/linux-arm/AndroidConfig.h b/include/arch/linux-arm/AndroidConfig.h index f5fabb2..5b7ccee 100644 --- a/include/arch/linux-arm/AndroidConfig.h +++ b/include/arch/linux-arm/AndroidConfig.h @@ -344,4 +344,14 @@ */ #define HAVE_PREAD 1 +/* + * Define if we have st_mtim in struct stat + */ +#define HAVE_STAT_ST_MTIM 1 + +/* + * Define if printf() supports %zd for size_t arguments + */ +#define HAVE_PRINTF_ZD 1 + #endif /* _ANDROID_CONFIG_H */ diff --git a/include/arch/linux-sh/AndroidConfig.h b/include/arch/linux-sh/AndroidConfig.h index 297f51b..0dd7b3b 100644 --- a/include/arch/linux-sh/AndroidConfig.h +++ b/include/arch/linux-sh/AndroidConfig.h @@ -351,4 +351,14 @@ */ #define HAVE_PREAD 1 +/* + * Define if we have st_mtim in struct stat + */ +#define HAVE_STAT_ST_MTIM 1 + +/* + * Define if printf() supports %zd for size_t arguments + */ +#define HAVE_PRINTF_ZD 1 + #endif /* _ANDROID_CONFIG_H */ diff --git a/include/arch/linux-x86/AndroidConfig.h b/include/arch/linux-x86/AndroidConfig.h index 385e1a2..24f6ccc 100644 --- a/include/arch/linux-x86/AndroidConfig.h +++ b/include/arch/linux-x86/AndroidConfig.h @@ -318,4 +318,14 @@ */ #define HAVE_PREAD 1 +/* + * Define if we have st_mtim in struct stat + */ +#define HAVE_STAT_ST_MTIM 1 + +/* + * Define if printf() supports %zd for size_t arguments + */ +#define HAVE_PRINTF_ZD 1 + #endif /*_ANDROID_CONFIG_H*/ diff --git a/include/arch/target_linux-x86/AndroidConfig.h b/include/arch/target_linux-x86/AndroidConfig.h index 8373318..d6ce3f2 100644 --- a/include/arch/target_linux-x86/AndroidConfig.h +++ b/include/arch/target_linux-x86/AndroidConfig.h @@ -335,4 +335,14 @@ */ #define HAVE_PREAD 1 +/* + * Define if we have st_mtim in struct stat + */ +#define HAVE_STAT_ST_MTIM 1 + +/* + * Define if printf() supports %zd for size_t arguments + */ +#define HAVE_PRINTF_ZD 1 + #endif /* _ANDROID_CONFIG_H */ diff --git a/include/arch/windows/AndroidConfig.h b/include/arch/windows/AndroidConfig.h index 00ce557..f0bf56f 100644 --- a/include/arch/windows/AndroidConfig.h +++ b/include/arch/windows/AndroidConfig.h @@ -323,4 +323,14 @@ */ /* #define HAVE_PREAD 1 */ +/* + * Define if we have st_mtim in struct stat + */ +/* #define HAVE_STAT_ST_MTIM 1 */ + +/* + * Define if printf() supports %zd for size_t arguments + */ +/* #define HAVE_PRINTF_ZD 1 */ + #endif /*_ANDROID_CONFIG_H*/ |