diff options
author | Timo Sirainen <cras@irssi.org> | 2001-12-11 16:44:53 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-12-11 16:44:53 +0000 |
commit | 617123b5d414b9b44159d1fe2a0bc57b0f272f08 (patch) | |
tree | 34bff8ee43e924f0ef85a6732d115afa8a04e2e0 /src/perl/perl-common.h | |
parent | d4ee6fd604f0a94d8a7f42dfcd716768beda1241 (diff) | |
download | irssi-617123b5d414b9b44159d1fe2a0bc57b0f272f08.zip |
I always forget Perl 5.004 doesn't have PL_na .. so, now I've declared for
5.004, and changed all STRLEN n_a code to use PL_na instead.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2238 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/perl/perl-common.h')
-rw-r--r-- | src/perl/perl-common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/perl/perl-common.h b/src/perl/perl-common.h index 7c3adfd1..9fa85f07 100644 --- a/src/perl/perl-common.h +++ b/src/perl/perl-common.h @@ -29,6 +29,7 @@ SV *perl_func_sv_inc(SV *func, const char *package); /* For compatibility with perl 5.004 and older */ #ifndef HAVE_PL_PERL # define PL_sv_undef sv_undef +extern STRLEN PL_na; #endif #define iobject_bless(object) \ |