Reini Urban wrote:
> in which perl was 'SvPV_nolen' introduced?
> the prev GUI.xs had 
>                 pszName = SvPV(*pHv, PL_na);
> instead of the new
>                 pszName = SvPV_nolen(*pHv);

yes, sorry, SvPV_nolen was introduced in 5.6.0.
you need to add these lines:

#ifndef SvPV_nolen
#    define  SvPV_nolen(x)   SvPV(x, PL_na)
#endif

BTW, if you wanna go really wild, I have set up
the CVS server, so you can grab the latest development
release directly from there ;-)

cheers,
Aldo

__END__
$_=q,just perl,,s, , another ,,s,$, hacker,,print;



Reply via email to