diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-09-23 16:50:38 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-09-23 16:50:38 (GMT) |
commit | 5740f2cbb879836bcedfde59d68604da45b25a47 (patch) | |
tree | 68de2cadee8bd7cf7c1f0708503b1846dabc5fe0 /Utilities | |
parent | dd92d9ec38232dfc80b4fff804a0960d23ccc227 (diff) | |
download | CMake-5740f2cbb879836bcedfde59d68604da45b25a47.zip CMake-5740f2cbb879836bcedfde59d68604da45b25a47.tar.gz CMake-5740f2cbb879836bcedfde59d68604da45b25a47.tar.bz2 |
ENH: get it working for linux
Diffstat (limited to 'Utilities')
-rw-r--r-- | Utilities/cmcurl-7.19.0/lib/config.cmake.h.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Utilities/cmcurl-7.19.0/lib/config.cmake.h.in b/Utilities/cmcurl-7.19.0/lib/config.cmake.h.in index de58546..cc1927e 100644 --- a/Utilities/cmcurl-7.19.0/lib/config.cmake.h.in +++ b/Utilities/cmcurl-7.19.0/lib/config.cmake.h.in @@ -23,8 +23,10 @@ # endif #endif -#if !defined(USE_WIN32_LARGE_FILES) && !defined(USE_WIN32_SMALL_FILES) -# define USE_WIN32_SMALL_FILES +#if defined(_WIN32) +# if !defined(USE_WIN32_LARGE_FILES) && !defined(USE_WIN32_SMALL_FILES) +# define USE_WIN32_SMALL_FILES +# endif #endif /* Define to 1 if you have the $func function. */ @@ -857,7 +859,7 @@ #endif /* Number of bits in a file offset, on hosts where this is settable. */ -#cmakedefine _FILE_OFFSET_BITS +#cmakedefine _FILE_OFFSET_BITS @_FILE_OFFSET_BITS@ /* Define for large files, on AIX-style hosts. */ #cmakedefine _LARGE_FILES |