Received: by mail.netbsd.org (Postfix, from userid 605) id 253AD84D2C; Sat, 29 Sep 2018 16:37:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 41DAA84CFB for ; Sat, 29 Sep 2018 16:37:10 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id bNGjbwxkC1KL for ; Sat, 29 Sep 2018 16:37:09 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7187E84CCE for ; Sat, 29 Sep 2018 16:37:09 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6B4E9FBEE; Sat, 29 Sep 2018 16:37:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_15382390295890" MIME-Version: 1.0 Date: Sat, 29 Sep 2018 16:37:09 +0000 From: "Sevan Janiyan" Subject: CVS commit: pkgsrc/math/mpfr To: pkgsrc-changes@NetBSD.org Reply-To: sevan@netbsd.org X-Mailer: log_accum Message-Id: <20180929163709.6B4E9FBEE@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_15382390295890 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: sevan Date: Sat Sep 29 16:37:09 UTC 2018 Modified Files: pkgsrc/math/mpfr: Makefile Log Message: Disable float128 support on DragonFly BSD as well. As per https://mail-index.netbsd.org/pkgsrc-users/2018/02/03/msg026233.html To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39 pkgsrc/math/mpfr/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_15382390295890 Content-Disposition: inline Content-Length: 725 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/mpfr/Makefile diff -u pkgsrc/math/mpfr/Makefile:1.38 pkgsrc/math/mpfr/Makefile:1.39 --- pkgsrc/math/mpfr/Makefile:1.38 Sun Feb 25 15:03:45 2018 +++ pkgsrc/math/mpfr/Makefile Sat Sep 29 16:37:09 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.38 2018/02/25 15:03:45 maya Exp $ +# $NetBSD: Makefile,v 1.39 2018/09/29 16:37:09 sevan Exp $ DISTNAME= mpfr-4.0.1 CATEGORIES= math @@ -12,7 +12,7 @@ LICENSE= gnu-lgpl-v3 .include "../../mk/bsd.prefs.mk" GNU_CONFIGURE= yes -.if !empty(MACHINE_PLATFORM:MNetBSD-[0-8]*-*) +.if !empty(MACHINE_PLATFORM:MNetBSD-[0-8]*-*) || !empty(MACHINE_PLATFORM:MDragonFly-[0-5]*-*) CONFIGURE_ARGS+= --disable-float128 .endif USE_LIBTOOL= yes --_----------=_15382390295890--