dougm       01/04/03 21:11:44

  Modified:    .        00README_FIRST
               pod      modperl_dev.pod
  Log:
  remove duplicate build instructions
  
  Revision  Changes    Path
  1.16      +5 -33     modperl-2.0/00README_FIRST
  
  Index: 00README_FIRST
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/00README_FIRST,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- 00README_FIRST    2001/03/27 02:39:47     1.15
  +++ 00README_FIRST    2001/04/04 04:11:43     1.16
  @@ -1,41 +1,13 @@
  -a (nearly) complete rewrite is underway for mod_perl-2.0
  +a complete rewrite is underway for mod_perl-2.0
   
  -more detailed design docs, etc., see the pod/ directory
  +for more detailed design docs, etc., see the pod/ directory
   
  -if you want to try building with an interpreter pool, you'll need Perl
  -5.6.0 built like so:
  +see pod/modperl_dev.pod for build instructions.
   
  -% ./Configure -des -Dusethreads
  -
  -mod_perl-2.0 will still work with an out-of-the-box Perl, but will
  -only be useful if your mpm is prefork (which is much like 1.3.x)
  -
  -to build mod_perl static:
  -NOTE: static linking untested for several months
  -
  -% perl Makefile.PL && make
  -
  -% cd ../httpd-2.0
  -% ./configure --prefix=$HOME/apache-2.0 --with-mpm=threaded
  -% patch -p1 < ../../modperl-2.0/patches/link-hack.pat
  -% make
  -
  -to build mod_perl dynamic:
  -
  -build httpd with mod_so enabled:
  -% cd httpd-2.0
  -% ./configure --with-mpm=threaded --enable-so ...
  -% make
  -% make install
  -
  -#build libmodperl.so and extension .so's
  -% perl Makefile.PL MP_GENERATE_XS=1 MP_USE_DSO=1 \
  -MP_APXS=$apache_prefix/bin/apxs && make
  -
   as for httpd.conf, mine looks something like so at the moment:
   
   #if dynamic build
  -LoadModule perl_module libexec/libmodperl.so
  +LoadModule perl_module modules/libmodperl.so
   
   #same as using the MOD_PERL_TRACE environment variable
   PerlTrace all
  @@ -63,4 +35,4 @@
   
   see the examples/ directory for examples.
   
  ---dougm 03/26/01
  +--dougm 04/03/01
  
  
  
  1.11      +2 -1      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.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- modperl_dev.pod   2001/03/26 16:17:10     1.10
  +++ modperl_dev.pod   2001/04/04 04:11:44     1.11
  @@ -35,7 +35,8 @@
   =head2 Create the build environment
   
     % cd modperl-2.0
  -  % perl Makefile.PL [options]
  +  % perl Makefile.PL MP_GENERATE_XS=1 MP_USE_DSO=1 \
  +    MP_APXS=$apache_prefix/bin/apxs && make
   
   I<options>  an optional list of (key,value) pairs. Currently all options are
   boolean, set them with MP_XXX=1.
  
  
  

Reply via email to