In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/5cbc519179d070e5670099e1d22fb729a3652e0f?hp=af9a438112f49d9f3c6920ffd2c7dc4dd0a24d8d>

- Log -----------------------------------------------------------------
commit 5cbc519179d070e5670099e1d22fb729a3652e0f
Author: Craig A. Berry <[email protected]>
Date:   Fri Sep 19 21:13:54 2014 -0500

    Disable libquadmath in configure.com.
    
    It can't reasonably be a configuration option since there is no
    special library needed (or available) to do 128-bit doubles.
    
    Also, we can't set the default of a configure variable to "n" unless
    it's the default answer to a question we ask; the compiler
    understands "#define" and "#undef" but not "#n".
-----------------------------------------------------------------------

Summary of changes:
 configure.com | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/configure.com b/configure.com
index 11eb024..0bb1a75 100644
--- a/configure.com
+++ b/configure.com
@@ -52,7 +52,6 @@ $ use64bitall = "n"
 $ use64bitint = "n"
 $ uselongdouble = "n"
 $ uselargefiles = "y"
-$ usequadmath = "n"
 $ usestdstat = "n"
 $ usesitecustomize = "n"
 $ C_Compiler_Replace = "CC="
@@ -926,7 +925,7 @@ $!
 $   config_symbols0 
="|archlib|archlibexp|bin|binexp|builddir|cf_email|config_sh|installarchlib|installbin|installman1dir|installman3dir|"
 $   config_symbols1 
="|installprivlib|installscript|installsitearch|installsitelib|most|oldarchlib|oldarchlibexp|osname|pager|perl_symbol|perl_verb|"
 $   config_symbols2 
="|prefix|privlib|privlibexp|scriptdir|sitearch|sitearchexp|sitebin|sitelib|sitelib_stem|sitelibexp|usecxx|use64bitall|use64bitint|"
-$   config_symbols3 
="|usecasesensitive|usedefaulttypes|usedevel|useieee|useithreads|uselongdouble|usequadmath|usemultiplicity|usemymalloc|usedebugging_perl|"
+$   config_symbols3 
="|usecasesensitive|usedefaulttypes|usedevel|useieee|useithreads|uselongdouble|usemultiplicity|usemymalloc|usedebugging_perl|"
 $   config_symbols4 
="|usesecurelog|usethreads|usevmsdebug|usefaststdio|usemallocwrap|unlink_all_versions|uselargefiles|usesitecustomize|"
 $   config_symbols5 
="|buildmake|builder|usethreadupcalls|usekernelthreads|useshortenedsymbols|useversionedarchname"
 $!  
@@ -6731,7 +6730,7 @@ $ WC "usemultiplicity='" + usemultiplicity + "'"
 $ WC "usemymalloc='" + usemymalloc + "'"
 $ WC "useperlio='define'"
 $ WC "useposix='false'"
-$ WC "usequadmath='" + usequadmath + "'"
+$ WC "usequadmath='undef'"
 $ WC "usereentrant='undef'"
 $ WC "userelocatableinc='undef'"
 $ WC "usesecurelog='" + usesecurelog + "'"  ! VMS-specific
@@ -6969,10 +6968,6 @@ $ IF uselongdouble .OR. uselongdouble .EQS. "define"
 $ THEN
 $   WC "#define USE_LONG_DOUBLE"
 $ ENDIF
-$ IF usequadmath .OR. usequadmath .EQS. "define"
-$ THEN
-$   WC "#define USE_QUADMATH"
-$ ENDIF
 $ IF use64bitall .OR. use64bitall .EQS. "define" THEN -
     WC "#define USE_64_BIT_ALL"
 $ IF be_case_sensitive THEN WC "#define VMS_WE_ARE_CASE_SENSITIVE"

--
Perl5 Master Repository

Reply via email to