diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2011-08-10 09:09:28 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2011-08-10 09:09:28 +0000 |
commit | 66945b4faeaa98c0e91020ae769c69f30a14f08e (patch) | |
tree | 11b4c18f171703d24a8e2ac39abac2f6c5732172 /math/fftw | |
parent | ecf47ec346dcd6c127600219a22eb7f838c84c7b (diff) | |
download | ports-66945b4faeaa98c0e91020ae769c69f30a14f08e.tar.gz ports-66945b4faeaa98c0e91020ae769c69f30a14f08e.zip |
Mark broken on sparc64 as well as i386.
Notes
Notes:
svn path=/head/; revision=279397
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" |