In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/4b2d6671441f6d60f1172ea0d86756fea9c01181?hp=38684baa0525ac95a5bcc5f409d91ff31f9fe242>

- Log -----------------------------------------------------------------
commit 4b2d6671441f6d60f1172ea0d86756fea9c01181
Author: Craig A. Berry <[email protected]>
Date:   Sun Dec 19 19:26:28 2010 -0600

    stdint.h has yet to appear on VMS.
    
    Despite the compiler's claiming C99 compliance.  What we probably
    really need here is I_STDINT, or perhaps HAVE_INTMAX and
    HAVE_UINTMAX, determined by Configure and friends.  But in any case
    07208e09d4435b4e72743076e0bc290ef4b34911 broke the build, so this
    gets it going again for now.
-----------------------------------------------------------------------

Summary of changes:
 sv.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/sv.c b/sv.c
index 99433b0..00b99b4 100644
--- a/sv.c
+++ b/sv.c
@@ -33,7 +33,7 @@
 #include "regcomp.h"
 
 #ifndef HAS_C99
-# if __STDC_VERSION__ >= 199901L
+# if __STDC_VERSION__ >= 199901L && !defined(VMS)
 #  define HAS_C99 1
 # endif
 #endif

--
Perl5 Master Repository

Reply via email to