dougm       01/04/03 22:41:07

  Modified:    lib/ModPerl BuildOptions.pm MM.pm
               pod      modperl_dev.pod
  Log:
  build extensions dynamic by default
  
  Revision  Changes    Path
  1.7       +1 -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.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- BuildOptions.pm   2001/03/26 16:17:06     1.6
  +++ BuildOptions.pm   2001/04/04 05:41:06     1.7
  @@ -143,7 +143,7 @@
   INST_APACHE2 Install *.pm relative to Apache2/ directory
   PROMPT_DEFAULT       Accept default value for all would-be prompts
   OPTIONS_FILE Read options from given file
  -DYNAMIC              Build Apache::*.xs as dynamic extensions
  +STATIC_EXTS  Build Apache::*.xs as static extensions
   APXS            Path to apxs
   XS_GLUE_DIR     Directories containing extension glue
   INCLUDE_DIR     Add directories to search for header files
  
  
  
  1.8       +1 -1      modperl-2.0/lib/ModPerl/MM.pm
  
  Index: MM.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/lib/ModPerl/MM.pm,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- MM.pm     2001/03/04 18:43:09     1.7
  +++ MM.pm     2001/04/04 05:41:06     1.8
  @@ -98,7 +98,7 @@
       #they are, unlike 1.xx where *.xs live in src/modules/perl
       #and are copied to subdir/ if DYNAMIC=1
   
  -    unless ($build->{MP_DYNAMIC}) {
  +    if ($build->{MP_STATIC_EXTS}) {
           #skip .xs -> .so if we are linking static
           my $name = $self->{NAME};
           unless ($always_dynamic{$name}) {
  
  
  
  1.12      +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.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- modperl_dev.pod   2001/04/04 04:11:44     1.11
  +++ modperl_dev.pod   2001/04/04 05:41:07     1.12
  @@ -55,9 +55,9 @@
   
   Build mod_perl as a DSO
   
  -=item MP_DYNAMIC
  +=item MP_STATIC_EXTS
   
  -Build Apache::*.xs as dynamic extensions
  +Build Apache::*.xs as static extensions
   
   =item MP_USE_GTOP
   
  
  
  

Reply via email to