Change 34476 by [EMAIL PROTECTED] on 2008/10/13 20:46:49
Revert the part of 29807 that added an #ifdef PERL_CORE around the
definition of NEWSV(). Modules shouldn't be defining PERL_CORE, but
spare the end users the pain caused by naughty authors.
Affected files ...
... //depot/maint-5.8/perl/handy.h#60 edit
Differences ...
==== //depot/maint-5.8/perl/handy.h#60 (text) ====
Index: perl/handy.h
--- perl/handy.h#59~33217~ 2008-02-02 14:47:50.000000000 -0800
+++ perl/handy.h 2008-10-13 13:46:49.000000000 -0700
@@ -693,9 +693,7 @@
=cut */
/* Maintained for backwards-compatibility only. Use newSV() instead. */
-#ifndef PERL_CORE
#define NEWSV(x,len) newSV(len)
-#endif
#define MEM_SIZE_MAX ((MEM_SIZE)~0)
End of Patch.