>Bram Moolenaar wrote
>
> David Fishburn wrote:
>
> [...]
>
>> -DDYNAMIC_PYTHON_DLL=\"python24.dll\" -DFEAT_PERL -DDYNAMIC_PERL
>> -DDYNAMI C_PERL_DLL=\"perl58.dll\" -DFEAT_BIG /Zi /Fd.\ObjGOLY/ /I
>> C:\Programs\perl\Lib\Core if_perl.c if_perl.c
>> if_perl.xs(158) : error C2061: syntax error : identifier '__attribute__'
>> if_perl.xs(158) : error C2059: syntax error : ';'
>
> Your problem appears to be with Perl, not with Vim. You may
> have a Perl for Unix and building Vim with MSVC doesn't work
> then.
Doesn't the error message mean that Visual Studio 8 does not like
line 158 of if_perl.xs?, which is:
static void (*Perl_croak)(pTHX_ const char*, ...)
__attribute__((noreturn));
--Suresh