In perl.git, the branch smoke-me/no-variable-args has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/0f0343205044d9c426ace82342a0831dbb80a74a?hp=65c512c3519b68852f64f5e1293cebadee892115>

- Log -----------------------------------------------------------------
commit 0f0343205044d9c426ace82342a0831dbb80a74a
Author: Nicholas Clark <[email protected]>
Date:   Tue Apr 17 12:52:44 2012 +0200

    Generate a valid config.h even if stdarg.h and varargs.h are both missing.
    
    Whilst we can't build perl on such a crippled system, there's no excuse for
    logical errors in config.sh resulting in an invalid config.h
-----------------------------------------------------------------------

Summary of changes:
 Configure |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/Configure b/Configure
index fdbbf20..fb0216b 100755
--- a/Configure
+++ b/Configure
@@ -10848,6 +10848,7 @@ chmod +x varargs
 : now check which varargs header should be included
 echo " "
 i_varhdr=''
+val=''
 case "$valstd" in
 "$define")
        if `./varargs I_STDARG`; then
@@ -20248,6 +20249,7 @@ EOCP
        $rm_try
        ;;
 *)     echo "You don't have <stdarg.h>, not checking for va_copy()." >&4
+       need_va_copy="$undef"
        ;;
 esac
 

--
Perl5 Master Repository

Reply via email to