diff options
author | linimon <linimon@FreeBSD.org> | 2011-08-10 17:09:28 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2011-08-10 17:09:28 +0800 |
commit | f69bc4e1005df4e7a1c1087d4f32a59aa07dbc98 (patch) | |
tree | bbcb8b46f8a71a444dafa394978e2df82561bd3c /math/fftw | |
parent | 9071090f0062c16303070abf7d3b0e09c1a8341e (diff) | |
download | freebsd-ports-gnome-f69bc4e1005df4e7a1c1087d4f32a59aa07dbc98.tar.gz freebsd-ports-gnome-f69bc4e1005df4e7a1c1087d4f32a59aa07dbc98.tar.zst freebsd-ports-gnome-f69bc4e1005df4e7a1c1087d4f32a59aa07dbc98.zip |
Mark broken on sparc64 as well as i386.
Diffstat (limited to 'math/fftw')
-rw-r--r-- | math/fftw/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/math/fftw/Makefile b/math/fftw/Makefile index 817eb4ae61e3..f62d6a113550 100644 --- a/math/fftw/Makefile +++ b/math/fftw/Makefile @@ -44,10 +44,13 @@ PLIST_SUB+= DEF="" .endif .if ${ARCH} == "i386" -BROKEN= does not build CONFIGURE_ARGS+= --enable-i386-hacks .endif +.if ${ARCH} == "i386" || ${ARCH} == "sparc64" +BROKEN= does not build +.endif + post-patch: @${RM} ${WRKSRC}/doc/fftw.info* .if ${FFTW_FLAVOR}=="float" |