diff options
| author | Kenny Root <kroot@google.com> | 2010-12-08 11:08:45 -0800 |
|---|---|---|
| committer | Kenny Root <kroot@google.com> | 2010-12-08 11:19:11 -0800 |
| commit | cfb61c272075e0fc25c39110b105825c128ac91f (patch) | |
| tree | d4a693d43160121cfaa9cf5ad8d8df450a802fea /include/arch | |
| parent | 07ad9961aee0cfcae89e23d47f47314e1d3629c1 (diff) | |
| download | system_core-cfb61c272075e0fc25c39110b105825c128ac91f.tar.gz system_core-cfb61c272075e0fc25c39110b105825c128ac91f.tar.bz2 system_core-cfb61c272075e0fc25c39110b105825c128ac91f.zip | |
Cygwin needs HAVE_OFF64_T and fix description
During testing of compilation, it was discovered that Cygwin actually
has off64_t.
Also the description was wrong for HAVE_OFF64_T
Change-Id: I6eb73d13da5a53fb03bf99ab7de82bfb6acab058
Diffstat (limited to 'include/arch')
| -rw-r--r-- | include/arch/darwin-x86/AndroidConfig.h | 2 | ||||
| -rw-r--r-- | include/arch/freebsd-x86/AndroidConfig.h | 2 | ||||
| -rw-r--r-- | include/arch/linux-arm/AndroidConfig.h | 2 | ||||
| -rw-r--r-- | include/arch/linux-ppc/AndroidConfig.h | 2 | ||||
| -rw-r--r-- | include/arch/linux-sh/AndroidConfig.h | 2 | ||||
| -rw-r--r-- | include/arch/linux-x86/AndroidConfig.h | 2 | ||||
| -rw-r--r-- | include/arch/target_linux-x86/AndroidConfig.h | 2 | ||||
| -rw-r--r-- | include/arch/windows/AndroidConfig.h | 4 |
8 files changed, 9 insertions, 9 deletions
diff --git a/include/arch/darwin-x86/AndroidConfig.h b/include/arch/darwin-x86/AndroidConfig.h index 6be3416a..c8ccc7e7 100644 --- a/include/arch/darwin-x86/AndroidConfig.h +++ b/include/arch/darwin-x86/AndroidConfig.h @@ -159,7 +159,7 @@ #define _LARGEFILE_SOURCE 1 /* - * Define if off_t is always 64-bit + * Define if platform has off64_t (and lseek64 and other xxx64 functions) */ /* #define HAVE_OFF64_T */ diff --git a/include/arch/freebsd-x86/AndroidConfig.h b/include/arch/freebsd-x86/AndroidConfig.h index ad96e55e..d828bd5f 100644 --- a/include/arch/freebsd-x86/AndroidConfig.h +++ b/include/arch/freebsd-x86/AndroidConfig.h @@ -175,7 +175,7 @@ #define _LARGEFILE_SOURCE 1 /* - * Define if off_t is always 64-bit + * Define if platform has off64_t (and lseek64 and other xxx64 functions) */ /* #define HAVE_OFF64_T */ diff --git a/include/arch/linux-arm/AndroidConfig.h b/include/arch/linux-arm/AndroidConfig.h index 48488f97..83891cdd 100644 --- a/include/arch/linux-arm/AndroidConfig.h +++ b/include/arch/linux-arm/AndroidConfig.h @@ -174,7 +174,7 @@ /* #define _LARGEFILE_SOURCE 1 */ /* - * Define if off_t is always 64-bit + * Define if platform has off64_t (and lseek64 and other xxx64 functions) */ #define HAVE_OFF64_T diff --git a/include/arch/linux-ppc/AndroidConfig.h b/include/arch/linux-ppc/AndroidConfig.h index 6ff50a3f..00706dca 100644 --- a/include/arch/linux-ppc/AndroidConfig.h +++ b/include/arch/linux-ppc/AndroidConfig.h @@ -164,7 +164,7 @@ #define _LARGEFILE_SOURCE 1 /* - * Define if off_t is always 64-bit + * Define if platform has off64_t (and lseek64 and other xxx64 functions) */ #define HAVE_OFF64_T diff --git a/include/arch/linux-sh/AndroidConfig.h b/include/arch/linux-sh/AndroidConfig.h index d389a0b5..5562eae5 100644 --- a/include/arch/linux-sh/AndroidConfig.h +++ b/include/arch/linux-sh/AndroidConfig.h @@ -174,7 +174,7 @@ /* #define _LARGEFILE_SOURCE 1 */ /* - * Define if off_t is always 64-bit + * Define if platform has off64_t (and lseek64 and other xxx64 functions) */ #define HAVE_OFF64_T diff --git a/include/arch/linux-x86/AndroidConfig.h b/include/arch/linux-x86/AndroidConfig.h index 612c0709..7dcaa98b 100644 --- a/include/arch/linux-x86/AndroidConfig.h +++ b/include/arch/linux-x86/AndroidConfig.h @@ -164,7 +164,7 @@ #define _LARGEFILE_SOURCE 1 /* - * Define if off_t is always 64-bit + * Define if platform has off64_t (and lseek64 and other xxx64 functions) */ #define HAVE_OFF64_T diff --git a/include/arch/target_linux-x86/AndroidConfig.h b/include/arch/target_linux-x86/AndroidConfig.h index c1a7771d..05dd2207 100644 --- a/include/arch/target_linux-x86/AndroidConfig.h +++ b/include/arch/target_linux-x86/AndroidConfig.h @@ -163,7 +163,7 @@ */ /* - * Define if off_t is always 64-bit + * Define if platform has off64_t (and lseek64 and other xxx64 functions) */ #define HAVE_OFF64_T diff --git a/include/arch/windows/AndroidConfig.h b/include/arch/windows/AndroidConfig.h index dc7b619a..ad890b4d 100644 --- a/include/arch/windows/AndroidConfig.h +++ b/include/arch/windows/AndroidConfig.h @@ -177,9 +177,9 @@ #define _LARGEFILE_SOURCE 1 /* - * Define if off_t is always 64-bit + * Define if platform has off64_t (and lseek64 and other xxx64 functions) */ -/* #define HAVE_OFF64_T */ +#define HAVE_OFF64_T /* * Defined if we have the backtrace() call for retrieving a stack trace. |
