blob: a536dbbf03e2b671ab67107c932227cfefb54263 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
_COMPLEX_DEFINED should be defined for MSVC, otherwise
complex is redefined inconsistently in <math.h>.
Mail from Akira, 31 Mar 2012 21:36:26.
diff -ur pmx-2.6.18.orig/libf2c/f2c.h pmx-2.6.18/libf2c/f2c.h
--- pmx-2.6.18.orig/libf2c/f2c.h 2012-04-09 18:24:12.000000000 +0200
+++ pmx-2.6.18/libf2c/f2c.h 2012-05-19 18:49:12.286432193 +0200
@@ -13,6 +13,9 @@
typedef short int shortint;
typedef float real;
typedef double doublereal;
+#ifdef WIN32
+#define _COMPLEX_DEFINED 1
+#endif
typedef struct { real r, i; } complex;
typedef struct { doublereal r, i; } doublecomplex;
typedef long int logical;
|