dougm 01/11/02 09:33:46
Modified: . Makefile.PL
Log:
XXX: MakeMaker will try to unlink $(APACHE_LIBDIR)/$MODPERL_LIB
during 'make' and probably 'make clean' as well
need to find another way to install libmodperl.so
Revision Changes Path
1.52 +9 -5 modperl-2.0/Makefile.PL
Index: Makefile.PL
===================================================================
RCS file: /home/cvs/modperl-2.0/Makefile.PL,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- Makefile.PL 2001/11/02 17:31:33 1.51
+++ Makefile.PL 2001/11/02 17:33:46 1.52
@@ -318,12 +318,16 @@
sub MY::post_initialize {
my $self = shift;
+ #XXX: MakeMaker will try to unlink $(APACHE_LIBDIR)/$MODPERL_LIB
+ #during 'make' and probably 'make clean' as well
+ #need to find another way to install libmodperl.so
+
# install libmodperl.so
- if ($build->{MP_USE_DSO}) {
- my $MODPERL_LIB = join '.', $build->{MP_LIBNAME}, 'so';
- $self->{PM}->{"src/modules/perl/$MODPERL_LIB"} =
- "\$(APACHE_LIBDIR)/$MODPERL_LIB";
- }
+# if ($build->{MP_USE_DSO}) {
+# my $MODPERL_LIB = join '.', $build->{MP_LIBNAME}, 'so';
+# $self->{PM}->{"src/modules/perl/$MODPERL_LIB"} =
+# "\$(APACHE_LIBDIR)/$MODPERL_LIB";
+# }
#up one from the Apache2/ subdir
#so it can be found for 'use Apache2 ()'