From: Brad King Date: Wed, 11 Nov 2009 14:20:20 +0000 (-0500) Subject: Disable inline keyword for Borland and old HP-UX X-Git-Tag: v2.8.0~173 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2a50bce32d2671160794d69df0bef23449ffc943;p=thirdparty%2Flibarchive.git Disable inline keyword for Borland and old HP-UX SVN-Revision: 1642 --- diff --git a/libarchive/archive_endian.h b/libarchive/archive_endian.h index cc0266e28..34d368ea1 100644 --- a/libarchive/archive_endian.h +++ b/libarchive/archive_endian.h @@ -45,7 +45,7 @@ * - SGI MIPSpro * - Microsoft Visual C++ 6.0 (supposedly newer versions too) */ -#if defined(__WATCOMC__) || defined(__sgi) +#if defined(__WATCOMC__) || defined(__sgi) || defined(__hpux) || defined(__BORLANDC__) #define inline #elif defined(_MSC_VER) #define inline __inline