diff --git a/math/fftw-3/Portfile b/math/fftw-3/Portfile
index aa0e274..4a63df2 100644
a
|
b
|
PortSystem 1.0 |
5 | 5 | |
6 | 6 | name fftw-3 |
7 | 7 | version 3.2.1 |
| 8 | revision 1 |
8 | 9 | categories math |
9 | 10 | platforms darwin |
10 | 11 | maintainers takeshi@macports.org |
… |
… |
checksums md5 712d3f33625a0a76f5758648d4b925f7 \ |
41 | 42 | |
42 | 43 | configure.args \ |
43 | 44 | --enable-threads \ |
44 | | --enable-fma \ |
45 | 45 | --disable-fortran \ |
46 | 46 | --enable-shared |
47 | 47 | |
48 | | configure.cflags-append -fno-common |
| 48 | configure.cflags-append \ |
| 49 | -fno-common \ |
| 50 | -O3 \ |
| 51 | -fomit-frame-pointer \ |
| 52 | -fstrict-aliasing |
49 | 53 | |
50 | 54 | test.run yes |
51 | 55 | test.target check |
… |
… |
test.target check |
53 | 57 | universal_variant yes |
54 | 58 | use_parallel_build yes |
55 | 59 | |
| 60 | platform powerpc { |
| 61 | configure.args-append \ |
| 62 | --enable-fma |
| 63 | } |
| 64 | |
| 65 | platform i386 { |
| 66 | configure.args-append \ |
| 67 | --enable-sse2 |
| 68 | } |
| 69 | |
56 | 70 | variant gcc42 description {create Fortran wrappers using gcc42} conflicts gcc43 g95 { |
57 | 71 | depends_lib-append port:gcc42 |
58 | 72 | configure.f77 gfortran-mp-4.2 |