1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-20 04:02:27 +00:00

math/p5-Math-MPFR: Update to 4.16

Changes:	https://metacpan.org/changes/distribution/Math-MPFR
This commit is contained in:
Po-Chuan Hsieh 2021-05-31 03:53:41 +08:00
parent f9f01c19a1
commit e93beb87f2
No known key found for this signature in database
GPG Key ID: 9A4BD10F002DD04B
3 changed files with 21 additions and 21 deletions

View File

@ -1,7 +1,7 @@
# Created by: Wen Heping <wenheping@gmail.com>
PORTNAME= Math-MPFR
PORTVERSION= 4.14
PORTVERSION= 4.16
CATEGORIES= math perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1595416749
SHA256 (Math-MPFR-4.14.tar.gz) = 49fc1195fbbe3a5f8d9e6da30951cb3fbb7f165695f7d606ea4a835afa84746c
SIZE (Math-MPFR-4.14.tar.gz) = 184586
TIMESTAMP = 1622214062
SHA256 (Math-MPFR-4.16.tar.gz) = 7511292faa0e4a7c8325a0d9a80e0ada73a60ccc197830087e456b236532a635
SIZE (Math-MPFR-4.16.tar.gz) = 191992

View File

@ -1,20 +1,20 @@
--- Makefile.PL.orig 2020-07-13 12:00:38 UTC
--- Makefile.PL.orig 2021-02-12 11:08:52 UTC
+++ Makefile.PL
@@ -193,7 +193,7 @@ else { # we still need to determine whether__float128
$mycc = defined($Config{cc}) ? $Config{cc} : 'cc';
}
@@ -206,7 +206,7 @@ else { # we still need to determine whether__float128
- $mylibs = '-lmpfr -lgmp -lquadmath' unless $mylibs;
+ $mylibs = '-lmpfr -lgmp' unless $mylibs;
print $SAVE "\n\n" if $save;
# Include $mylibs to ensure that -lquadmath is locatable.
my $out = `$mycc -o have_f128.exe -x c have_f128.in $mylibs 2>&1`;
@@ -336,7 +336,7 @@ my %options = (
ABSTRACT => 'Perl interface to the MPFR (floating point) library',
DEFINE => $defines,
LIBS => [
- '-lmpfr -lgmp -lquadmath'
+ '-lmpfr -lgmp'
],
PREREQ_PM => {
'Test::More' => '0.88',
- my $mylibs = $mklib . " " . $mylibpth . " -lquadmath";
+ my $mylibs = $mklib . " " . $mylibpth;
my $out = `$mycc -o have_f128.exe -x c have_f128.in 2>&1`;
@@ -347,7 +347,7 @@ my %options = (
AUTHOR => 'Sisyphus (sisyphus at (@) cpan dot (.) org)',
ABSTRACT => 'Perl interface to the MPFR (floating point) library',
DEFINE => $defines,
- LIBS => [ '-lmpfr -lgmp -lquadmath' ],
+ LIBS => [ '-lmpfr -lgmp' ],
PREREQ_PM => { 'Test::More' => '0.88', },
#OBJECT => '$(O_FILES)', # set below if $Config{nvsize} == 8
LICENSE => 'perl',