pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/math/fftw
Module Name: pkgsrc
Committed By: thor
Date: Fri May 7 11:59:42 UTC 2021
Modified Files:
pkgsrc/math/fftw: Makefile
Log Message:
math/fftw: fix GCC > 4.8 version check
To generate a diff of this commit:
cvs rdiff -u -r1.66 -r1.67 pkgsrc/math/fftw/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/math/fftw/Makefile
diff -u pkgsrc/math/fftw/Makefile:1.66 pkgsrc/math/fftw/Makefile:1.67
--- pkgsrc/math/fftw/Makefile:1.66 Fri Apr 30 23:31:08 2021
+++ pkgsrc/math/fftw/Makefile Fri May 7 11:59:41 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.66 2021/04/30 23:31:08 thor Exp $
+# $NetBSD: Makefile,v 1.67 2021/05/07 11:59:41 thor Exp $
PKGREVISION= 5
@@ -64,7 +64,7 @@ FFTW_DOUBLE_OPTS= --enable-generic-simd1
FFTW_FLOAT_OPTS+= --enable-sse --enable-sse2 --enable-avx
FFTW_DOUBLE_OPTS+= --enable-sse2 --enable-avx
# From gcc-4.9 on, these should work trouble-free.
-.if empty(${CC_VERSION:Mgcc-4.8.*})
+.if empty(CC_VERSION:Mgcc-4.8.*)
FFTW_FLOAT_OPTS+= --enable-avx2 --enable-avx512 --enable-avx-128-fma
FFTW_DOUBLE_OPTS+= --enable-avx2 --enable-avx512 --enable-avx-128-fma
.endif
Home |
Main Index |
Thread Index |
Old Index