diff options
author | Brad King <brad.king@kitware.com> | 2006-08-25 20:32:47 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-08-25 20:32:47 (GMT) |
commit | 209a3d4f7bc1a0f840a95cefb4a18be8cc6acc80 (patch) | |
tree | c8e3a003128af120d9a19889ff76f52946b3511a /Source/kwsys/Configure.h.in | |
parent | 6449089436d16406f35f1ee9aef33c07ca89785e (diff) | |
download | CMake-209a3d4f7bc1a0f840a95cefb4a18be8cc6acc80.zip CMake-209a3d4f7bc1a0f840a95cefb4a18be8cc6acc80.tar.gz CMake-209a3d4f7bc1a0f840a95cefb4a18be8cc6acc80.tar.bz2 |
COMP: Disable _FILE_OFFSET_BITS check until sys/types.h check is enabled.
Diffstat (limited to 'Source/kwsys/Configure.h.in')
-rw-r--r-- | Source/kwsys/Configure.h.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/Configure.h.in b/Source/kwsys/Configure.h.in index 1afd416..01867ed 100644 --- a/Source/kwsys/Configure.h.in +++ b/Source/kwsys/Configure.h.in @@ -56,7 +56,7 @@ !defined(@KWSYS_NAMESPACE@_LFS_NO_DEFINE_FILE_OFFSET_BITS) # define _FILE_OFFSET_BITS 64 # endif -# if defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS < 64 +# if 0 && (defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS < 64) # error "_FILE_OFFSET_BITS must be defined to at least 64" # endif # endif |