joes 2004/07/15 09:00:52
Modified: build version_check.pl
glue/perl/xsbuilder apreq_xs_tables.h
Log:
Fix mp2 version check. Bug first reported by Edward J. Sabol.
Revision Changes Path
1.17 +2 -1 httpd-apreq-2/build/version_check.pl
Index: version_check.pl
===================================================================
RCS file: /home/cvs/httpd-apreq-2/build/version_check.pl,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- version_check.pl 5 Jul 2004 05:22:17 -0000 1.16
+++ version_check.pl 15 Jul 2004 16:00:52 -0000 1.17
@@ -57,7 +57,8 @@
"Apache::Test" => { version => "1.04", test => \&a_t_version,
comment => "Win32 requires version 1.06" },
"ExtUtils::XSBuilder" => { version => "0.23", test => \&xsb_version },
- mod_perl => { version => "1.99_15", test => \&mp2_version },
+ # mp2 does not contain "_" in its reported version number
+ mod_perl => { version => "1.9915", test => \&mp2_version },
"ExtUtils::MakeMaker" => { version => "6.15", test => \&mm_version },
);
1.23 +1 -1 httpd-apreq-2/glue/perl/xsbuilder/apreq_xs_tables.h
Index: apreq_xs_tables.h
===================================================================
RCS file: /home/cvs/httpd-apreq-2/glue/perl/xsbuilder/apreq_xs_tables.h,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- apreq_xs_tables.h 14 Jul 2004 17:58:19 -0000 1.22
+++ apreq_xs_tables.h 15 Jul 2004 16:00:52 -0000 1.23
@@ -51,7 +51,7 @@
}
static const MGVTBL apreq_xs_table_magic = {0, 0, 0, 0, 0,
- apreq_xs_table_magic_copy};
+ apreq_xs_table_magic_copy, 0, 0,
0, apreq_xs_table_magic_copy};
#endif