From: Michael G. Schwern Date: Sat, 4 Oct 2008 22:47:50 +0000 (-0400) Subject: Turn quads on in the VC configurations. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0e3c5d8bc74003db0d21a865654ade5ad797f838;p=p5sagit%2Fp5-mst-13.2.git Turn quads on in the VC configurations. --- diff --git a/win32/config.vc b/win32/config.vc index f91b5b8..b883a29 100644 --- a/win32/config.vc +++ b/win32/config.vc @@ -345,7 +345,7 @@ d_pwgecos='undef' d_pwpasswd='undef' d_pwquota='undef' d_qgcvt='undef' -d_quad='undef' +d_quad='define' d_random_r='undef' d_readdir64_r='undef' d_readdir='define' diff --git a/win32/config_H.vc b/win32/config_H.vc index b2ecc30..ac7d22d 100644 --- a/win32/config_H.vc +++ b/win32/config_H.vc @@ -911,20 +911,22 @@ * Quad_t, and its unsigned counterpar, Uquad_t. QUADKIND will be one * of QUAD_IS_INT, QUAD_IS_LONG, QUAD_IS_LONG_LONG, or QUAD_IS_INT64_T. */ -/*#define HAS_QUAD /**/ +#define HAS_QUAD /**/ #ifdef HAS_QUAD # ifndef __GNUC__ # define Quad_t __int64 /**/ # define Uquad_t unsigned __int64 /**/ +# define QUADKIND 5 /**/ # else # define Quad_t long long /**/ # define Uquad_t unsigned long long /**/ +# define QUADKIND 3 /**/ # endif -# define QUADKIND 5 /**/ # define QUAD_IS_INT 1 # define QUAD_IS_LONG 2 # define QUAD_IS_LONG_LONG 3 # define QUAD_IS_INT64_T 4 +# define QUAD_IS___INT64 5 #endif /* OSNAME: