Mercurial > pidgin.yaz
changeset 4886:f0140b7e10a0
[gaim-migrate @ 5216]
chip things this might allow that perl 5.000... fix not to break perl 5.8
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Tue, 25 Mar 2003 01:41:54 +0000 |
parents | 1bf59e3ac4ff |
children | 7433f6a3569e |
files | src/perl.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/perl.c Tue Mar 25 01:29:37 2003 +0000 +++ b/src/perl.c Tue Mar 25 01:41:54 2003 +0000 @@ -34,10 +34,6 @@ #ifdef USE_PERL -#ifndef call_pv -# define call_pv(i,j) perl_call_pv(i,j) -#endif - #define group perl_group #ifdef _WIN32 /* This took me an age to figure out.. without this __declspec(dllimport) @@ -87,6 +83,10 @@ #include "prpl.h" #include "sound.h" +#ifndef call_pv +# define call_pv(i,j) perl_call_pv(i,j) +#endif + struct perlscript { char *name; char *version;