diff options
author | Eric Schuele <ravenlock@ravenlock.us> | 2007-06-05 21:52:15 +0000 |
---|---|---|
committer | Eric Schuele <ravenlock@ravenlock.us> | 2007-06-05 21:52:15 +0000 |
commit | 91ced9988875d2a624dedd7ddf7a3a6aae723131 (patch) | |
tree | c492726cf674b16fb635439e624f024a35154756 /legacy/ecore | |
parent | f685af65732db938dfb991a026da49c6c9887da7 (diff) |
FreeBSD has large file support out of the box
SVN revision: 30259
Diffstat (limited to 'legacy/ecore')
-rw-r--r-- | legacy/ecore/src/lib/ecore_file/ecore_file.c | 2 | ||||
-rw-r--r-- | legacy/ecore/src/lib/ecore_file/ecore_file_private.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/legacy/ecore/src/lib/ecore_file/ecore_file.c b/legacy/ecore/src/lib/ecore_file/ecore_file.c index 5d96c2e6f7..c148581751 100644 --- a/legacy/ecore/src/lib/ecore_file/ecore_file.c +++ b/legacy/ecore/src/lib/ecore_file/ecore_file.c | |||
@@ -6,7 +6,9 @@ | |||
6 | #define _FILE_OFFSET_BITS 64 | 6 | #define _FILE_OFFSET_BITS 64 |
7 | #endif | 7 | #endif |
8 | 8 | ||
9 | #ifndef __FreeBSD__ | ||
9 | #include <features.h> | 10 | #include <features.h> |
11 | #endif | ||
10 | #include <ctype.h> | 12 | #include <ctype.h> |
11 | #include "ecore_file_private.h" | 13 | #include "ecore_file_private.h" |
12 | #include <errno.h> | 14 | #include <errno.h> |
diff --git a/legacy/ecore/src/lib/ecore_file/ecore_file_private.h b/legacy/ecore/src/lib/ecore_file/ecore_file_private.h index b2883f1b96..531c59330e 100644 --- a/legacy/ecore/src/lib/ecore_file/ecore_file_private.h +++ b/legacy/ecore/src/lib/ecore_file/ecore_file_private.h | |||
@@ -2,7 +2,9 @@ | |||
2 | #define _FILE_OFFSET_BITS 64 | 2 | #define _FILE_OFFSET_BITS 64 |
3 | #endif | 3 | #endif |
4 | 4 | ||
5 | #ifndef __FreeBSD__ | ||
5 | #include <features.h> | 6 | #include <features.h> |
7 | #endif | ||
6 | #include "ecore_private.h" | 8 | #include "ecore_private.h" |
7 | #include "Ecore.h" | 9 | #include "Ecore.h" |
8 | #include "Ecore_File.h" | 10 | #include "Ecore_File.h" |