If you are running mod_perl1 and want to move to perl 5.14 please pull from trunk and run make test. I got 100% tests passing with Snow Leopard, 5.14.1, and 1.31-dev.
---------- Forwarded message ---------- From: <ph...@apache.org> Date: Sat, Jul 30, 2011 at 10:23 PM Subject: svn commit: r1152547 - in /perl/modperl/branches/1.x: Changes src/modules/perl/mod_perl.h To: modperl-...@perl.apache.org Author: phred Date: Sun Jul 31 05:23:57 2011 New Revision: 1152547 URL: http://svn.apache.org/viewvc?rev=1152547&view=rev Log: Typo fix, thanks to Salvador Garcia for the fix. Reviewed by: Fred Moyer Tested by: Fred Moyer Modified: perl/modperl/branches/1.x/Changes perl/modperl/branches/1.x/src/modules/perl/mod_perl.h Modified: perl/modperl/branches/1.x/Changes URL: http://svn.apache.org/viewvc/perl/modperl/branches/1.x/Changes?rev=1152547&r1=1152546&r2=1152547&view=diff ============================================================================== --- perl/modperl/branches/1.x/Changes (original) +++ perl/modperl/branches/1.x/Changes Sun Jul 31 05:23:57 2011 @@ -10,6 +10,9 @@ all changes without author attribution a =item 1.32-dev +Post RT 64999 typo spot in CvGV macro +[Salvador Ortiz Garcia <s...@msg.com.mx>] + RT 64999, perl 5.14 compatibility, GvCV and GvGP lvalue changes in perl core [Todd Wade <sendw...@hotmail.com>] Modified: perl/modperl/branches/1.x/src/modules/perl/mod_perl.h URL: http://svn.apache.org/viewvc/perl/modperl/branches/1.x/src/modules/perl/mod_perl.h?rev=1152547&r1=1152546&r2=1152547&view=diff ============================================================================== --- perl/modperl/branches/1.x/src/modules/perl/mod_perl.h (original) +++ perl/modperl/branches/1.x/src/modules/perl/mod_perl.h Sun Jul 31 05:23:57 2011 @@ -1030,8 +1030,8 @@ else { \ #define GvCV_set(gv, cv) (GvCV(gv) = (cv)) #endif -#ifndef GvCV_set -#define CvGV_set(gv, cv) (CvVG(gv) = (cv)) +#ifndef CvGV_set +#define CvGV_set(gv, cv) (CvGV(gv) = (cv)) #endif typedef struct { --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@perl.apache.org For additional commands, e-mail: dev-h...@perl.apache.org