View | Details | Raw Unified | Return to bug 63532
Collapse All | Expand All

(-)math/freefem++/Makefile (-4 lines)
Lines 30-39 Link Here
30
30
31
.include <bsd.port.pre.mk>
31
.include <bsd.port.pre.mk>
32
32
33
.if ${ARCH} == "alpha" && ${OSVERSION} >= 502102
34
BROKEN=		"Does not compile on alpha 5.x"
35
.endif
36
37
.if ${OSVERSION} < 501103
33
.if ${OSVERSION} < 501103
38
USE_GCC=	3.2
34
USE_GCC=	3.2
39
.endif
35
.endif
(-)math/freefem++/files/patch-src::AnyType.hpp (+12 lines)
Line 0 Link Here
1
--- ./src/AnyType.hpp.orig	Sat May 31 11:53:05 2003
2
+++ ./src/AnyType.hpp	Sun Feb 29 16:13:27 2004
3
@@ -5,7 +5,8 @@
4
 class basicForEachType;
5
 typedef const  basicForEachType * aType;
6
 
7
-typedef  unsigned char  AnyData[24]; 
8
+//typedef  unsigned char  AnyData[24]; 
9
+typedef  unsigned char  AnyData[2*(sizeof(void*)+2*sizeof(double))];
10
 
11
 extern map<const string,basicForEachType *> map_type;
12
 

Return to bug 63532