On 19 February 2014 22:07, Karl Williamson <pub...@khwilliamson.com> wrote:
> In perl.git, the branch blead has been updated
>
> <http://perl5.git.perl.org/perl.git/commitdiff/89f7b9aac23a02ff8140b277b76eb7a70b0b04cc?hp=63baef57e83f77e202ae14ef902a6615cf69c8a2>
>
> - Log -----------------------------------------------------------------
> commit 89f7b9aac23a02ff8140b277b76eb7a70b0b04cc
> Author: Karl Williamson <pub...@khwilliamson.com>
> Date:   Wed Feb 19 14:55:29 2014 -0700
>
[...]
> +    /* Here the input locale was LC_ALL, and we have set it to what is in the
> +     * LANG variable.  But LANG has lower priority than the other LC_foo
> +     * variables, so override it for each one that is set.  (If they are set 
> to
> +     * "", it means to use the same thing we just set LC_ALL to, so can skip)
> +     * */
> +#   ifdef USE_LOCALE_TIME
> +    result = PerlEnv_getenv("LC_TIME");
> +    if (result and strNE(result, "")) {

You mean "&&", not "and", right?...

..\locale.c(433) : error C2146: syntax error : missing ')' before
identifier 'and'
..\locale.c(433) : warning C4013: 'and' undefined; assuming extern returning int
..\locale.c(433) : error C2059: syntax error : ')'
..\locale.c(433) : error C2143: syntax error : missing ';' before '{'
..\locale.c(439) : error C2146: syntax error : missing ')' before
identifier 'and'
..\locale.c(439) : error C2059: syntax error : ')'
..\locale.c(439) : error C2143: syntax error : missing ';' before '{'
..\locale.c(445) : error C2146: syntax error : missing ')' before
identifier 'and'
..\locale.c(445) : error C2059: syntax error : ')'
..\locale.c(445) : error C2143: syntax error : missing ';' before '{'
..\locale.c(451) : error C2146: syntax error : missing ')' before
identifier 'and'
..\locale.c(451) : error C2059: syntax error : ')'
..\locale.c(451) : error C2143: syntax error : missing ';' before '{'
NMAKE : fatal error U1077: '"c:\Program Files (x86)\Microsoft Visual
Studio 10.0\VC\BIN\cl.EXE"' : return code '0x2'
Stop.

Reply via email to