In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/a2c061044c1e87ae8e777d6134191760235db0de?hp=cf549b97af10073cdfe2efa120d97a5b53ecd85c>

- Log -----------------------------------------------------------------
commit a2c061044c1e87ae8e777d6134191760235db0de
Author: Tony Cook <[email protected]>
Date:   Mon Apr 11 13:55:45 2016 +1000

    make Configure abort if both -Duselongdouble and -Dusequadmath are requested
    
    See [perl #126203]
-----------------------------------------------------------------------

Summary of changes:
 Configure | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/Configure b/Configure
index a6fd51f..d634cdb 100755
--- a/Configure
+++ b/Configure
@@ -5241,6 +5241,20 @@ case "$usequadmath" in
 *)                    usequadmath="$undef"  ;;
 esac
 
+: Fail if both uselongdouble and usequadmath are requested
+case "$usequadmath:$uselongdouble" in
+define:define)
+       $cat <<EOM >&4
+
+*** You requested the use of the quadmath library and use
+*** of long doubles.
+***
+*** Please select one or the other.
+EOM
+       exit 1
+        ;;
+esac
+
 : Looking for optional libraries
 echo " "
 echo "Checking for optional libraries..." >&4

--
Perl5 Master Repository

Reply via email to