`na' undeclared

ふと Text::BibTeX なんていう Perl モジュールを入れようと思い(ぉ,make してたら,

BibTeX.c: In function `XS_Text__BibTeX_constant':
BibTeX.c:55: `na' undeclared (first use this function)
BibTeX.c:55: (Each undeclared identifier is reported only once
BibTeX.c:55: for each function it appears in.)
BibTeX.xs:52: `sv_undef' undeclared (first use this function)
(以下略

とか怒られた.こういう場合,

#ifndef na 
#define na PL_na
#endif
#ifndef sv_undef
#define sv_undef PL_sv_undef
#endif 

してやればよいようだ.