diff options
author | jtb <jtb@pkgsrc.org> | 2003-05-02 18:04:47 +0000 |
---|---|---|
committer | jtb <jtb@pkgsrc.org> | 2003-05-02 18:04:47 +0000 |
commit | 29f8e84330821fc1318773593f301aa5d190d8cd (patch) | |
tree | a4c71e42d0830d9283aa091316935c56bfb0fe65 /math/fftw | |
parent | 4cd146d670975bd0c41c43067371b71fdc366a08 (diff) | |
download | pkgsrc-29f8e84330821fc1318773593f301aa5d190d8cd.tar.gz |
Only use the fused multiply add version for PowerPC architecture.
Move DISTNAME.
Diffstat (limited to 'math/fftw')
-rw-r--r-- | math/fftw/Makefile | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/math/fftw/Makefile b/math/fftw/Makefile index b1fbddb9aeb..ca3fbbbb08d 100644 --- a/math/fftw/Makefile +++ b/math/fftw/Makefile @@ -1,16 +1,15 @@ -# $NetBSD: Makefile,v 1.7 2003/04/29 22:48:45 jtb Exp $ +# $NetBSD: Makefile,v 1.8 2003/05/02 18:04:47 jtb Exp $ +.if (${MACHINE_ARCH} == "powerpc") +DISTNAME= fftw-3.0-fma +.else +DISTNAME= fftw-3.0 +.endif PKGNAME= fftw-3.0 CATEGORIES= math MASTER_SITES= ftp://ftp.fftw.org/pub/fftw/ \ http://www.fftw.org/ -.if (${MACHINE_ARCH} == "i386") -DISTNAME= fftw-3.0 -.else -DISTNAME= fftw-3.0-fma -.endif - MAINTAINER= root@garbled.net HOMEPAGE= http://www.fftw.org/ COMMENT= Collection of fast C routines to compute DFTs |