From: Steve Hay Date: Tue, 2 May 2006 09:39:01 +0000 (+0000) Subject: RE: [PATCH] fix 27987 for MSVC (was Re: Smoke [5.9.4] 28020 FAIL(m) MSWin32 Win2000... X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0586e26ac882da507fe050161dec1c4647418319;p=p5sagit%2Fp5-mst-13.2.git RE: [PATCH] fix 27987 for MSVC (was Re: Smoke [5.9.4] 28020 FAIL(m) MSWin32 Win2000 SP4 (x86/1 cpu)) From: "Jan Dubois" Date: Mon, 1 May 2006 18:55:11 -0700 Message-ID: <08ff01c66d8b$7282e320$2217a8c0@candy> Subject: Re: [PATCH] fix 27987 for MSVC (was Re: Smoke [5.9.4] 28020 FAIL(m) From: "H.Merijn Brand" Date: Tue, 2 May 2006 09:23:51 +0200 Message-ID: <20060502092351.7bae0896@pc09> p4raw-id: //depot/perl@28051 --- diff --git a/win32/config.vc b/win32/config.vc index 404acba..89e3242 100644 --- a/win32/config.vc +++ b/win32/config.vc @@ -409,7 +409,7 @@ d_sigaction='undef' d_sigprocmask='undef' d_sigsetjmp='undef' d_sitearch='define' -d_snprintf='undef' +d_snprintf='define' d_sockatmark='undef' d_sockatmarkproto='undef' d_socket='define' @@ -491,7 +491,7 @@ d_voidsig='define' d_voidtty='' d_volatile='define' d_vprintf='define' -d_vsnprintf='undef' +d_vsnprintf='define' d_wait4='undef' d_waitpid='define' d_wcstombs='define' diff --git a/win32/config.vc64 b/win32/config.vc64 index 8495ec0..6e5c748 100644 --- a/win32/config.vc64 +++ b/win32/config.vc64 @@ -409,7 +409,7 @@ d_sigaction='undef' d_sigprocmask='undef' d_sigsetjmp='undef' d_sitearch='define' -d_snprintf='undef' +d_snprintf='define' d_sockatmark='undef' d_sockatmarkproto='undef' d_socket='define' @@ -491,7 +491,7 @@ d_voidsig='define' d_voidtty='' d_volatile='define' d_vprintf='define' -d_vsnprintf='undef' +d_vsnprintf='define' d_wait4='undef' d_waitpid='define' d_wcstombs='define' diff --git a/win32/config_H.vc b/win32/config_H.vc index 0be227b..f394791 100644 --- a/win32/config_H.vc +++ b/win32/config_H.vc @@ -2318,8 +2318,8 @@ * This symbol, if defined, indicates that the vsnprintf () library * function is available for use. */ -/*#define HAS_SNPRINTF /**/ -/*#define HAS_VSNPRINTF /**/ +#define HAS_SNPRINTF /**/ +#define HAS_VSNPRINTF /**/ /* HAS_SOCKET: * This symbol, if defined, indicates that the BSD socket interface is diff --git a/win32/config_H.vc64 b/win32/config_H.vc64 index 8301920..82beceb 100644 --- a/win32/config_H.vc64 +++ b/win32/config_H.vc64 @@ -2305,8 +2305,8 @@ * This symbol, if defined, indicates that the vsnprintf () library * function is available for use. */ -/*#define HAS_SNPRINTF /**/ -/*#define HAS_VSNPRINTF /**/ +#define HAS_SNPRINTF /**/ +#define HAS_VSNPRINTF /**/ /* HAS_SOCKET: * This symbol, if defined, indicates that the BSD socket interface is