From 0dfef5a8124ac0f1bb2aed6ef5ddfa833e8e2c6e Mon Sep 17 00:00:00 2001 From: David Webster Date: Mon, 14 Feb 2000 05:00:55 +0000 Subject: [PATCH] Fix for VA 4.0 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6001 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/jpeg/jconfig.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/jpeg/jconfig.h b/src/jpeg/jconfig.h index 7367459c4c..e3c94a1717 100644 --- a/src/jpeg/jconfig.h +++ b/src/jpeg/jconfig.h @@ -54,7 +54,11 @@ /* use wxWindows' configure */ /* #define INLINE __inline__ */ +#if defined(__VISAGECPP__) && (__IBMCPP__ >= 400 || __IBMC__ >= 400) +#define INLINE +#else #define INLINE inline +#endif /* These are for configuring the JPEG memory manager. */ #undef DEFAULT_MAX_MEM -- 2.45.2