diff options
author | mef <mef@pkgsrc.org> | 2019-12-22 02:12:00 +0000 |
---|---|---|
committer | mef <mef@pkgsrc.org> | 2019-12-22 02:12:00 +0000 |
commit | 84ba76bfdfd64f3a98f5171c9987dcd199a7395f (patch) | |
tree | fae18d14347058b886ff634cf283877420df05fc /math/mpfr | |
parent | 98fc12e51717fee13e1886b2b02e56a08192f8b7 (diff) | |
download | pkgsrc-84ba76bfdfd64f3a98f5171c9987dcd199a7395f.tar.gz |
(math/mpfr) Fix build of gcc-4.8,4.9 for NetBSD 9.x
Re: http://mail-index.netbsd.org/pkgsrc-users/2019/12/22/msg030057.html
Diffstat (limited to 'math/mpfr')
-rw-r--r-- | math/mpfr/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/math/mpfr/Makefile b/math/mpfr/Makefile index 62f2aa63dda..d2e5d62c1d0 100644 --- a/math/mpfr/Makefile +++ b/math/mpfr/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.41 2019/11/02 16:16:20 rillig Exp $ +# $NetBSD: Makefile,v 1.42 2019/12/22 02:12:00 mef Exp $ DISTNAME= mpfr-4.0.2 +PKGREVISION= 1 CATEGORIES= math MASTER_SITES= http://www.mpfr.org/${DISTNAME}/ EXTRACT_SUFX= .tar.bz2 @@ -12,7 +13,7 @@ LICENSE= gnu-lgpl-v3 .include "../../mk/bsd.prefs.mk" GNU_CONFIGURE= yes -.if !empty(MACHINE_PLATFORM:MNetBSD-[0-8]*-*) || !empty(MACHINE_PLATFORM:MDragonFly-[0-5]*-*) +.if !empty(MACHINE_PLATFORM:MNetBSD-[0-9]*-*) || !empty(MACHINE_PLATFORM:MDragonFly-[0-5]*-*) CONFIGURE_ARGS+= --disable-float128 .endif USE_LIBTOOL= yes |