Philip M. Gollucci wrote:
Steve Hay wrote:
Philip M. Gollucci wrote:
Hi, I just counted 20 changes in the CHANGES file since 2.0.2.

I'm seeing all tests pass again on all 3 mpms and all httpd versions 2.055+ on FreeBSD.

I'm not sure about windows (randy,steve?)

All OK here on WinXP with 2.2.2, except for the known api/status failures. I haven't tried 2.0.x for a while.
I just fixed this.  see the -commits or modperl@ lists.
about 1 hour ago.

Thanks. I didn't see that because my modperl@ list subscription seems to keep getting dropped for some reason.

I just tried again with rev 411082 and I initially got a compile error that I haven't seen before, caused by a (void) that has been added to PERL_SYS_INIT3() which doesn't work on Win32 because PERL_SYS_INIT3() here is a do { ... } while (0) statement.

After removing that (see attached patch) I now have all tests successful.


------------------------------------------------
Radan Computational Ltd.

The information contained in this message and any files transmitted with it are 
confidential and intended for the addressee(s) only. If you have received this 
message in error or there are any problems, please notify the sender 
immediately. The unauthorized use, disclosure, copying or alteration of this 
message is strictly forbidden. Note that any views or opinions presented in 
this email are solely those of the author and do not necessarily represent 
those of Radan Computational Ltd. The recipient(s) of this message should check 
it and any attached files for viruses: Radan Computational will accept no 
liability for any damage caused by any virus transmitted by this email.
Index: src/modules/perl/mod_perl.c
===================================================================
--- src/modules/perl/mod_perl.c (revision 411082)
+++ src/modules/perl/mod_perl.c (working copy)
@@ -558,7 +558,7 @@
     /* not every OS uses those vars in PERL_SYS_INIT3 macro */
     argc = argc; argv = argv; env = env;
 
-    (void)PERL_SYS_INIT3(&argc, &argv, &env);
+    PERL_SYS_INIT3(&argc, &argv, &env);
 
 #if 0 /*XXX*/
 #ifdef PTHREAD_ATFORK
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to