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

@ -3,6 +3,10 @@
Version 1.3.37 (in progress)
============================
2008-11-01: wsfulton
[Java] Add patch #2152691 from MATSUURA Takanori which fixes compiles using the
Intel compiler
2008-11-01: wsfulton
Add patch #2128249 from Anatoly Techtonik which corrects the C/C++ proxy
class being reported for Python docstrings when %rename is used.

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