Received: by mail.netbsd.org (Postfix, from userid 605) id 4F7F184D59; Sun, 16 May 2021 10:16:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8962C84D48 for ; Sun, 16 May 2021 10:16:27 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id QGA7VbuqDS-7 for ; Sun, 16 May 2021 10:16:27 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D95C584CDB for ; Sun, 16 May 2021 10:16:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CC122FA95; Sun, 16 May 2021 10:16:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_162116018686410" MIME-Version: 1.0 Date: Sun, 16 May 2021 10:16:26 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/math/fftw To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210516101626.CC122FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_162116018686410 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun May 16 10:16:26 UTC 2021 Modified Files: pkgsrc/math/fftw: options.mk Log Message: fftw: match future powerpc variants To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/math/fftw/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_162116018686410 Content-Disposition: inline Content-Length: 871 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/fftw/options.mk diff -u pkgsrc/math/fftw/options.mk:1.10 pkgsrc/math/fftw/options.mk:1.11 --- pkgsrc/math/fftw/options.mk:1.10 Sun May 16 10:14:09 2021 +++ pkgsrc/math/fftw/options.mk Sun May 16 10:16:26 2021 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.10 2021/05/16 10:14:09 nia Exp $ +# $NetBSD: options.mk,v 1.11 2021/05/16 10:16:26 nia Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.fftw PKG_SUPPORTED_OPTIONS= fftw-fortran openmp mpi @@ -27,7 +27,7 @@ FFTW_DOUBLE_OPTS+= --enable-${opt} # Generic compiler vector abstractions (GCC extension). FFTW_FLOAT_OPTS+= --enable-generic-simd128 --enable-generic-simd256 FFTW_DOUBLE_OPTS+= --enable-generic-simd128 --enable-generic-simd256 -. if ${MACHINE_ARCH} == "powerpc" +. if !empty(MACHINE_ARCH:Mpowerpc*) FFTW_FLOAT_OPTS+= --enable-altivec . endif . if ${MACHINE_ARCH} == "x86_64" --_----------=_162116018686410--