With the current mp2 cvs, the build of Apache::RequestIO
fails with an unknown symbol modperl_request_read on Win32.
I think this is due to modperl_request_read being declared
as static within xs/tables/current/ModPerl/FunctionTable.pm,
which as such doesn't get added to mod_perl.lib. This patch:
========================================================
Index: xs/tables/current/ModPerl/FunctionTable.pm
===================================================================
RCS file: /home/cvs/modperl-2.0/xs/tables/current/ModPerl/FunctionTable.pm,v
retrieving revision 1.127
diff -u -r1.127 FunctionTable.pm
--- xs/tables/current/ModPerl/FunctionTable.pm 6 Nov 2003 11:22:02 -0000 1.127
+++ xs/tables/current/ModPerl/FunctionTable.pm 6 Nov 2003 15:37:32 -0000
@@ -5769,9 +5769,6 @@
{
'return_type' => 'SSize_t',
'name' => 'modperl_request_read',
- 'attr' => [
- 'static'
- ],
'args' => [
{
'type' => 'PerlInterpreter *',
=================================================================
allows it to be added, and the build completes.
--
best regards,
randy
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]