In perl.git, the branch blead has been updated

<https://perl5.git.perl.org/perl.git/commitdiff/291c057a714c4bb419e91e8b00039d61390c42f9?hp=a33b278ed39a785690da6bce866fc02aa63eaaaf>

- Log -----------------------------------------------------------------
commit 291c057a714c4bb419e91e8b00039d61390c42f9
Author: Peter John Acklam <pjack...@online.no>
Date:   Sun Jan 7 08:28:58 2018 -0500

    Facilitate building with quadmath on Cygwin.
    
    For: RT # 128627

-----------------------------------------------------------------------

Summary of changes:
 ext/POSIX/Makefile.PL | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/ext/POSIX/Makefile.PL b/ext/POSIX/Makefile.PL
index 6e40f59ab1..1ed4d32982 100644
--- a/ext/POSIX/Makefile.PL
+++ b/ext/POSIX/Makefile.PL
@@ -20,6 +20,9 @@ if ($^O eq 'solaris') {
 if ($^O eq 'aix' && $Config{uselongdouble}) {
     push @libs, qw(c128);
 }
+if ($^O eq 'cygwin' && $Config{usequadmath}) {
+    push @libs, qw(quadmath);
+}
 WriteMakefile(
     NAME       => 'POSIX',
     @libs ? ( 'LIBS' => [ join(" ", map { "-l$_" } @libs) ] ) : (),

-- 
Perl5 Master Repository

Reply via email to