diff options
| author | Jean-Baptiste Queru <jbq@google.com> | 2009-11-24 09:12:44 -0800 |
|---|---|---|
| committer | Jean-Baptiste Queru <jbq@google.com> | 2009-11-24 09:12:44 -0800 |
| commit | 8145c3dba1183ea8c0600415a71fc0fc050b9405 (patch) | |
| tree | 86d17b3c1be0860f55d0f94712d03abd65582023 | |
| parent | e929fbae102c8786eda98bf0e37146ff61fbf8d1 (diff) | |
| parent | 303254eb674991bbb79b887b0d49fef48ae5abd4 (diff) | |
| download | system_core-8145c3dba1183ea8c0600415a71fc0fc050b9405.tar.gz system_core-8145c3dba1183ea8c0600415a71fc0fc050b9405.tar.bz2 system_core-8145c3dba1183ea8c0600415a71fc0fc050b9405.zip | |
merge from open-source master
| -rw-r--r-- | include/arch/darwin-x86/AndroidConfig.h | 5 | ||||
| -rw-r--r-- | include/arch/freebsd-x86/AndroidConfig.h | 5 | ||||
| -rw-r--r-- | include/arch/linux-arm/AndroidConfig.h | 5 | ||||
| -rw-r--r-- | include/arch/linux-sh/AndroidConfig.h | 5 | ||||
| -rw-r--r-- | include/arch/linux-x86/AndroidConfig.h | 5 | ||||
| -rw-r--r-- | include/arch/target_linux-x86/AndroidConfig.h | 5 | ||||
| -rw-r--r-- | include/arch/windows/AndroidConfig.h | 7 |
7 files changed, 37 insertions, 0 deletions
diff --git a/include/arch/darwin-x86/AndroidConfig.h b/include/arch/darwin-x86/AndroidConfig.h index ad16e0c2..20e00001 100644 --- a/include/arch/darwin-x86/AndroidConfig.h +++ b/include/arch/darwin-x86/AndroidConfig.h @@ -86,6 +86,11 @@ #define HAVE_TERMIO_H /* + * Define this if you have <sys/sendfile.h> + */ +/* #define HAVE_SYS_SENDFILE_H 1 */ + +/* * Define this if you build against MSVCRT.DLL */ /* #define HAVE_MS_C_RUNTIME */ diff --git a/include/arch/freebsd-x86/AndroidConfig.h b/include/arch/freebsd-x86/AndroidConfig.h index 39c564b9..b01a854f 100644 --- a/include/arch/freebsd-x86/AndroidConfig.h +++ b/include/arch/freebsd-x86/AndroidConfig.h @@ -91,6 +91,11 @@ /* #define HAVE_TERMIO_H */ /* + * Define this if you have <sys/sendfile.h> + */ +/* #define HAVE_SYS_SENDFILE_H 1 */ + +/* * Define this if you build against MSVCRT.DLL */ /* #define HAVE_MS_C_RUNTIME */ diff --git a/include/arch/linux-arm/AndroidConfig.h b/include/arch/linux-arm/AndroidConfig.h index 82e39c01..26547a21 100644 --- a/include/arch/linux-arm/AndroidConfig.h +++ b/include/arch/linux-arm/AndroidConfig.h @@ -92,6 +92,11 @@ #define HAVE_TERMIO_H /* + * Define this if you have <sys/sendfile.h> + */ +#define HAVE_SYS_SENDFILE_H 1 + +/* * Define this if you build against MSVCRT.DLL */ /* #define HAVE_MS_C_RUNTIME */ diff --git a/include/arch/linux-sh/AndroidConfig.h b/include/arch/linux-sh/AndroidConfig.h index 4af39d94..67ac2777 100644 --- a/include/arch/linux-sh/AndroidConfig.h +++ b/include/arch/linux-sh/AndroidConfig.h @@ -92,6 +92,11 @@ #define HAVE_TERMIO_H /* + * Define this if you have <sys/sendfile.h> + */ +#define HAVE_SYS_SENDFILE_H 1 + +/* * Define this if you build against MSVCRT.DLL */ /* #define HAVE_MS_C_RUNTIME */ diff --git a/include/arch/linux-x86/AndroidConfig.h b/include/arch/linux-x86/AndroidConfig.h index 557ec5f9..31bdb5f9 100644 --- a/include/arch/linux-x86/AndroidConfig.h +++ b/include/arch/linux-x86/AndroidConfig.h @@ -86,6 +86,11 @@ #define HAVE_TERMIO_H /* + * Define this if you have <sys/sendfile.h> + */ +#define HAVE_SYS_SENDFILE_H 1 + +/* * Define this if you build against MSVCRT.DLL */ /* #define HAVE_MS_C_RUNTIME */ diff --git a/include/arch/target_linux-x86/AndroidConfig.h b/include/arch/target_linux-x86/AndroidConfig.h index 66057232..d89d0547 100644 --- a/include/arch/target_linux-x86/AndroidConfig.h +++ b/include/arch/target_linux-x86/AndroidConfig.h @@ -78,6 +78,11 @@ #define HAVE_TERMIO_H 1 /* + * Define this if you have <sys/sendfile.h> + */ +#define HAVE_SYS_SENDFILE_H 1 + +/* * Define this if you build against have Microsoft C runtime (MSVCRT.DLL) */ /* #define HAVE_MS_C_RUNTIME */ diff --git a/include/arch/windows/AndroidConfig.h b/include/arch/windows/AndroidConfig.h index b240519a..0fc4955e 100644 --- a/include/arch/windows/AndroidConfig.h +++ b/include/arch/windows/AndroidConfig.h @@ -101,6 +101,13 @@ #endif /* + * Define this if you have <sys/sendfile.h> + */ +#ifdef __CYGWIN__ +# define HAVE_SYS_SENDFILE_H 1 +#endif + +/* * Define this if you build against MSVCRT.DLL */ #ifndef __CYGWIN__ |
