Intel compiler fix for __int64 typedef redefinition

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@7370 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2005-08-16 21:26:44 +00:00
commit e00d664c62

View file

@ -30,15 +30,16 @@
#endif
%insert(runtime) %{
#if defined(__GNUC__)
typedef long long __int64; /*For gcc on Windows */
/* Fix for jlong on some versions of gcc on Windows */
#if defined(__GNUC__) && !defined(__INTELC__)
typedef long long __int64;
#endif
/* fix for 'jlong' on x86_64 */
/* Fix for jlong on 64-bit x86 Solaris */
#if defined(__x86_64)
#ifdef _LP64 /* 64-bit Solaris */
#undef _LP64
#endif
# ifdef _LP64
# undef _LP64
# endif
#endif
#include <jni.h>