1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
--- ccx_2.10/src/CalculiX.h.orig 2016-03-05 11:18:02 UTC
+++ ccx_2.10/src/CalculiX.h
@@ -15,12 +15,14 @@
/* along with this program; if not, write to the Free Software */
/* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
-#define Linux 1
+#include <pthread.h>
+
+#define FreeBSD 1
#define IRIX 2
#define IRIX64 3
#define HP 4
-#if ARCH == Linux
+#if ARCH == FreeBSD
#define FORTRAN(A,B) A##_ B
#elif ARCH == IRIX || ARCH == IRIX64
#define FORTRAN(A,B) A##_##B
@@ -28,7 +30,7 @@
#define FORTRAN(A,B) A##B
#endif
-#if ARCH == Linux
+#if ARCH == FreeBSD
#define CEE(A,B) A##_ B
#elif ARCH == IRIX || ARCH == IRIX64
#define CEE(A,B) A##_##B
|