Add patch #2152691 from MATSUURA Takanori which fixes compiles using the Intel compiler

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10928 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2008-11-11 22:56:36 +00:00
commit bfd9e5f3e3
2 changed files with 5 additions and 1 deletions

View file

@ -34,7 +34,7 @@
%insert(runtime) %{
/* Fix for jlong on some versions of gcc on Windows */
#if defined(__GNUC__) && !defined(__INTELC__)
#if defined(__GNUC__) && !defined(__INTEL_COMPILER)
typedef long long __int64;
#endif