diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-01-26 05:40:53 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-01-26 05:40:53 +0000 |
commit | 184812f289126dea36f7c7c2641c8992a3fb4025 (patch) | |
tree | 0a944216311e4dcb1bc6c49aec2e19f65367af2a /legacy/ecore/src/lib/ecore_file/ecore_file.c | |
parent | 2c87820492e3e497bf9e11faa28ba85cbf04dd72 (diff) |
replace a lot of win32 ifdef hacks with autoconf checks
SVN revision: 33616
Diffstat (limited to '')
-rw-r--r-- | legacy/ecore/src/lib/ecore_file/ecore_file.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/legacy/ecore/src/lib/ecore_file/ecore_file.c b/legacy/ecore/src/lib/ecore_file/ecore_file.c index 31834562ab..8c2c8c646a 100644 --- a/legacy/ecore/src/lib/ecore_file/ecore_file.c +++ b/legacy/ecore/src/lib/ecore_file/ecore_file.c | |||
@@ -2,11 +2,13 @@ | |||
2 | * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 | 2 | * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 |
3 | */ | 3 | */ |
4 | 4 | ||
5 | #include <config.h> | ||
6 | |||
5 | #ifndef _FILE_OFFSET_BITS | 7 | #ifndef _FILE_OFFSET_BITS |
6 | # define _FILE_OFFSET_BITS 64 | 8 | # define _FILE_OFFSET_BITS 64 |
7 | #endif | 9 | #endif |
8 | 10 | ||
9 | #ifdef __linux__ | 11 | #ifdef HAVE_FEATURES_H |
10 | # include <features.h> | 12 | # include <features.h> |
11 | #endif | 13 | #endif |
12 | #include <ctype.h> | 14 | #include <ctype.h> |