geoff 2004/09/07 06:19:12
Modified: lib/ModPerl BuildOptions.pm
Log:
default to DSO build when no option is chosen.
really this just effects the user messages, as
DSO is the default anyway.
Revision Changes Path
1.29 +2 -1 modperl-2.0/lib/ModPerl/BuildOptions.pm
Index: BuildOptions.pm
===================================================================
RCS file: /home/cvs/modperl-2.0/lib/ModPerl/BuildOptions.pm,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- BuildOptions.pm 23 Jul 2004 23:24:55 -0000 1.28
+++ BuildOptions.pm 7 Sep 2004 13:19:12 -0000 1.29
@@ -55,7 +55,8 @@
}
unless ($build->{MP_USE_DSO} or $build->{MP_USE_STATIC}) {
- $build->{MP_USE_DSO} = $build->{MP_USE_STATIC} = 1;
+ # default to DSO
+ $build->{MP_USE_DSO} = 1;
}
$build->{MP_GENERATE_XS} = 1 unless exists $build->{MP_GENERATE_XS};