summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2010-12-08 11:08:45 -0800
committerKenny Root <kroot@google.com>2010-12-08 11:19:11 -0800
commitcfb61c272075e0fc25c39110b105825c128ac91f (patch)
treed4a693d43160121cfaa9cf5ad8d8df450a802fea /include
parent07ad9961aee0cfcae89e23d47f47314e1d3629c1 (diff)
downloadsystem_core-cfb61c272075e0fc25c39110b105825c128ac91f.zip
system_core-cfb61c272075e0fc25c39110b105825c128ac91f.tar.gz
system_core-cfb61c272075e0fc25c39110b105825c128ac91f.tar.bz2
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')
-rw-r--r--include/arch/darwin-x86/AndroidConfig.h2
-rw-r--r--include/arch/freebsd-x86/AndroidConfig.h2
-rw-r--r--include/arch/linux-arm/AndroidConfig.h2
-rw-r--r--include/arch/linux-ppc/AndroidConfig.h2
-rw-r--r--include/arch/linux-sh/AndroidConfig.h2
-rw-r--r--include/arch/linux-x86/AndroidConfig.h2
-rw-r--r--include/arch/target_linux-x86/AndroidConfig.h2
-rw-r--r--include/arch/windows/AndroidConfig.h4
8 files changed, 9 insertions, 9 deletions
diff --git a/include/arch/darwin-x86/AndroidConfig.h b/include/arch/darwin-x86/AndroidConfig.h
index 6be3416..c8ccc7e 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 ad96e55..d828bd5 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 48488f9..83891cd 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 6ff50a3..00706dc 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 d389a0b..5562eae 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 612c070..7dcaa98 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 c1a7771..05dd220 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 dc7b619..ad890b4 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.