diff options
-rw-r--r-- | math/arpack-ng/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/math/arpack-ng/Makefile b/math/arpack-ng/Makefile index 7eb8884c4a1..bbcaf1e1b82 100644 --- a/math/arpack-ng/Makefile +++ b/math/arpack-ng/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2020/10/12 21:52:02 bacon Exp $ +# $NetBSD: Makefile,v 1.3 2020/11/19 19:58:27 mcf Exp $ DISTNAME= arpack-ng-3.7.0 PKGREVISION= 1 @@ -13,6 +13,10 @@ LICENSE= original-bsd USE_LANGUAGES= c fortran USE_CMAKE= yes +# Required to build with gfortran 10. Fixed upstream in +# https://github.com/opencollab/arpack-ng/commit/9418632214 +FFLAGS+= -fallow-argument-mismatch + OBJDIR= obj CONFIGURE_DIRS= ${OBJDIR} |