diff options
| author | Mike Buland <eichlan@xagasoft.com> | 2010-05-13 13:43:57 +0000 | 
|---|---|---|
| committer | Mike Buland <eichlan@xagasoft.com> | 2010-05-13 13:43:57 +0000 | 
| commit | 2a943828287d2a861930d3facb2333c895ada205 (patch) | |
| tree | 9e0cbd81f0b2e9f0d5739275507aea2ecb9115b8 /src/config.h | |
| parent | 9a30a663e472774a45b78b3240f6a399637992fc (diff) | |
| download | libbu++-2a943828287d2a861930d3facb2333c895ada205.tar.gz libbu++-2a943828287d2a861930d3facb2333c895ada205.tar.bz2 libbu++-2a943828287d2a861930d3facb2333c895ada205.tar.xz libbu++-2a943828287d2a861930d3facb2333c895ada205.zip | |
Finally rearranged the system to put all compatability files in a directory
called compat.  I've updated the linux and windows builds and it looks pretty
good.  I also added a config.h file which we have to edit by hand until I can
work on build some more.  Linux File operations now use 64 bit mode, windows
can't, or at least, I don't feel like researching it right now.
Diffstat (limited to 'src/config.h')
| -rw-r--r-- | src/config.h | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/src/config.h b/src/config.h new file mode 100644 index 0000000..05ef99a --- /dev/null +++ b/src/config.h | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | #ifndef BU_CONFIG_H | ||
| 2 | #define BU_CONFIG_H | ||
| 3 | |||
| 4 | // Use 64 bit IO functions where applicable (i.e. large file support) | ||
| 5 | #define USE_64BIT_IO | ||
| 6 | |||
| 7 | #include "bu/compat/win32.h" | ||
| 8 | #include "bu/compat/osx.h" | ||
| 9 | #include "bu/compat/linux.h" | ||
| 10 | |||
| 11 | #endif | ||
