[SCM] UNNAMED PROJECT branch, master, updated. debian/4.4-13-30-gc8f6f09

Bastien ROUCARIÈS roucaries.bastien at gmail.com
Sun Jun 26 16:15:17 UTC 2011


The following commit has been merged in the master branch:
commit b7b21d76ca4cbc73d93ddf4f64b0994581d4722a
Author: Bastien ROUCARIÈS <roucaries.bastien at gmail.com>
Date:   Mon Jun 20 18:50:34 2011 +0200

    Improve long long support with old ms visual
    
    Improve long long support with old ms visual

diff --git a/cfortran.h b/cfortran.h
index 98733f0..7e1316a 100644
--- a/cfortran.h
+++ b/cfortran.h
@@ -144,24 +144,14 @@ FOR ANY SUPPORT OR SERVICE OF THE CFORTRAN.H PACKAGE.
   'long long' is now supported by most compilers, but older
   MS Visual C++ compilers before V7.0 use '__int64' instead. (WDP)
 */
-
-#ifndef CFORTRAN_LONGLONG_TYPE   /* this may have been previously defined */
 #if defined(_MSC_VER)   /* Microsoft Visual C++ */
-
 #if (_MSC_VER < 1300)   /* versions earlier than V7.0 do not have 'long long' */
     typedef __int64 CFORTRAN_LONGLONG;
-#else                   /* newer versions do support 'long long' */
-    typedef long long CFORTRAN_LONGLONG; 
 #endif
-
 #else
     typedef long long CFORTRAN_LONGLONG; 
 #endif
 
-#define CFORTRAN_LONGLONG_TYPE
-#endif  
-
-
 /* First prepare for the C compiler. */
 
 #if (defined(vax)&&defined(unix)) || (defined(__vax__)&&defined(__unix__))

-- 
UNNAMED PROJECT



More information about the debian-science-commits mailing list