Change 18686 by sky@sky-tibook on 2003/02/10 18:11:35
Compile under threads and MacOSX. For some reason newSVpvf
was not exapnded.
Affected files ...
... //depot/perl/universal.c#62 edit
Differences ...
==== //depot/perl/universal.c#62 (text) ====
Index: perl/universal.c
--- perl/universal.c#61~18682~ Sun Feb 9 16:26:50 2003
+++ perl/universal.c Mon Feb 10 10:11:35 2003
@@ -361,7 +361,7 @@
if (items == 3 )
{
char *vs = savepvn(SvPVX(ST(2)),SvCUR(ST(2)));
- version = newSVpvf("v%s",vs);
+ version = Perl_newSVpvf(aTHX_ "v%s",vs);
}
PUSHs(new_version(version));
End of Patch.