diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2010-09-10 17:37:02 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2010-09-10 17:37:02 (GMT) |
commit | 92c082b1c9269a2fcbb9472b02adb3dd57a283ea (patch) | |
tree | a872181b1aa2570556df61da27801245ce26fa6c /Utilities | |
parent | bd56626a4ad06d43c896c59c2065a3fd1cd3b73a (diff) | |
download | CMake-92c082b1c9269a2fcbb9472b02adb3dd57a283ea.zip CMake-92c082b1c9269a2fcbb9472b02adb3dd57a283ea.tar.gz CMake-92c082b1c9269a2fcbb9472b02adb3dd57a283ea.tar.bz2 |
Add a fix for the inline keyword on the osf os.
Diffstat (limited to 'Utilities')
-rw-r--r-- | Utilities/cmlibarchive/libarchive/archive_endian.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Utilities/cmlibarchive/libarchive/archive_endian.h b/Utilities/cmlibarchive/libarchive/archive_endian.h index 067312d..58abee6 100644 --- a/Utilities/cmlibarchive/libarchive/archive_endian.h +++ b/Utilities/cmlibarchive/libarchive/archive_endian.h @@ -48,7 +48,7 @@ */ #if defined(__WATCOMC__) || defined(__sgi) || defined(__hpux) || defined(__BORLANDC__) || defined(__SUNPRO_C) #define inline -#elif defined(_MSC_VER) +#elif defined(_MSC_VER) || defined(__osf__) #define inline __inline #endif |