summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorCraig A. Berry <craigberry@mac.com>2010-12-19 19:26:28 -0600
committerCraig A. Berry <craigberry@mac.com>2010-12-19 21:58:46 -0600
commit4b2d6671441f6d60f1172ea0d86756fea9c01181 (patch)
tree0f9807350b3fe228bdf7c2fdca36f8e8b3069a03 /sv.c
parent38684baa0525ac95a5bcc5f409d91ff31f9fe242 (diff)
downloadperl-4b2d6671441f6d60f1172ea0d86756fea9c01181.tar.gz
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.
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sv.c b/sv.c
index 99433b06e7..00b99b4fba 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