diff options
author | Craig A. Berry <craigberry@mac.com> | 2010-12-19 19:26:28 -0600 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2010-12-19 21:58:46 -0600 |
commit | 4b2d6671441f6d60f1172ea0d86756fea9c01181 (patch) | |
tree | 0f9807350b3fe228bdf7c2fdca36f8e8b3069a03 /sv.c | |
parent | 38684baa0525ac95a5bcc5f409d91ff31f9fe242 (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |