randyk 2004/06/22 15:09:27
Modified: xs/APR/APR Makefile.PL
Log:
Reviewed by: stas
include src/modules/perl/modperl_bucket.c when building APR.so,
so that APR::Bucket can be used outside of mod_perl.so.
Revision Changes Path
1.21 +1 -1 modperl-2.0/xs/APR/APR/Makefile.PL
Index: Makefile.PL
===================================================================
RCS file: /home/cvs/modperl-2.0/xs/APR/APR/Makefile.PL,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- Makefile.PL 16 Jun 2004 03:55:48 -0000 1.20
+++ Makefile.PL 22 Jun 2004 22:09:27 -0000 1.21
@@ -58,7 +58,7 @@
# link the following into APR.so so other APR:: modules can be used
# outside of httpd
-my @names = map { "modperl_$_" } (qw(error),
+my @names = map { "modperl_$_" } (qw(error bucket),
map { "common_$_" } qw(util log));
my(@obj, @clean, %src);
for (@names) {