diff options
author | ahze <ahze@FreeBSD.org> | 2005-10-29 01:18:07 +0000 |
---|---|---|
committer | ahze <ahze@FreeBSD.org> | 2005-10-29 01:18:07 +0000 |
commit | 5eacf698985c8019f0c36a17a87d6af0858da90b (patch) | |
tree | d8a8a32e545d7bc42ce96b84965756b498b2ee5a /math | |
parent | fc96335a647666056a824cfc21311e02f3cd30f7 (diff) | |
download | FreeBSD-ports-5eacf698985c8019f0c36a17a87d6af0858da90b.zip FreeBSD-ports-5eacf698985c8019f0c36a17a87d6af0858da90b.tar.gz |
- Fix fftw3-long by ALWAYS using math/ldouble even if CPUTYPE is defined
since some CPUTYPES work and others don't.
Diffstat (limited to 'math')
-rw-r--r-- | math/fftw3-long/Makefile | 2 | ||||
-rw-r--r-- | math/fftw3/Makefile | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/math/fftw3-long/Makefile b/math/fftw3-long/Makefile index 1d6939a..227ffd6 100644 --- a/math/fftw3-long/Makefile +++ b/math/fftw3-long/Makefile @@ -14,6 +14,4 @@ MASTERDIR= ${.CURDIR}/../../math/fftw3 ONLY_FOR_ARCHS= i386 -BROKEN= "Does not build" - .include "${MASTERDIR}/Makefile" diff --git a/math/fftw3/Makefile b/math/fftw3/Makefile index 56b92d2..a42fd87 100644 --- a/math/fftw3/Makefile +++ b/math/fftw3/Makefile @@ -61,7 +61,7 @@ USE_GCC= 3.4 .endif .endif .endif -.if ${FFTW3_FLAVOR}=="long" && !defined(CPUTYPE) +.if ${FFTW3_FLAVOR}=="long" USE_LDOUBLE= yes .endif .if ${MACHINE_CPU:M3dnow} |