dougm       01/12/15 15:45:05

  Modified:    lib/ModPerl BuildOptions.pm
               pod      modperl_dev.pod
  Log:
  make MP_GENERATE_XS=1 the default
  
  Revision  Changes    Path
  1.13      +1 -0      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.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- BuildOptions.pm   2001/11/21 02:13:00     1.12
  +++ BuildOptions.pm   2001/12/15 23:45:05     1.13
  @@ -25,6 +25,7 @@
       }
   
       $build->{MP_USE_DSO} = 1 unless $build->{MP_USE_STATIC};
  +    $build->{MP_GENERATE_XS} = 1 unless exists $build->{MP_GENERATE_XS};
   }
   
   sub parse {
  
  
  
  1.46      +2 -2      modperl-2.0/pod/modperl_dev.pod
  
  Index: modperl_dev.pod
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/pod/modperl_dev.pod,v
  retrieving revision 1.45
  retrieving revision 1.46
  diff -u -r1.45 -r1.46
  --- modperl_dev.pod   2001/12/13 18:09:41     1.45
  +++ modperl_dev.pod   2001/12/15 23:45:05     1.46
  @@ -64,8 +64,7 @@
   =head2 Create the build environment
   
     % cd modperl-2.0
  -  % perl Makefile.PL MP_GENERATE_XS=1 \
  -    MP_APXS=$apache_prefix/bin/apxs && make
  +  % perl Makefile.PL MP_APXS=$apache_prefix/bin/apxs && make
   
   I<options> an optional list of (key,value) pairs.
   
  @@ -80,6 +79,7 @@
   =item MP_GENERATE_XS
   
   Generate xs code from parsed source headers in I<xs/tables/$httpd_version>.
  +Default is 1, set to 0 to disable.
   
   =item MP_USE_DSO
   
  
  
  


Reply via email to