dougm       00/09/27 10:55:24

  Modified:    .        Changes Makefile.PL
  Log:
  fix for Makefile.PL ADD_MODULE=src/module/foo/libfoo.a
  
  Revision  Changes    Path
  1.528     +3 -0      modperl/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl/Changes,v
  retrieving revision 1.527
  retrieving revision 1.528
  diff -u -r1.527 -r1.528
  --- Changes   2000/09/27 16:25:48     1.527
  +++ Changes   2000/09/27 17:55:21     1.528
  @@ -10,6 +10,9 @@
   
   =item 1.24_01-dev
   
  +fix for Makefile.PL ADD_MODULE=src/module/foo/libfoo.a
  +[Nelson Oliveira <[EMAIL PROTECTED]>]
  +
   added Apache::user method in preparation for 2.0, now that `user' hangs
   off of the request_rec rather than request_rec->connection in Apache 2.0
   
  
  
  
  1.169     +2 -2      modperl/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /home/cvs/modperl/Makefile.PL,v
  retrieving revision 1.168
  retrieving revision 1.169
  diff -u -r1.168 -r1.169
  --- Makefile.PL       2000/09/26 21:19:33     1.168
  +++ Makefile.PL       2000/09/27 17:55:21     1.169
  @@ -975,10 +975,10 @@
        } 
        if($ADD_MODULE) {
            for (split ",", $ADD_MODULE) {
  -             if(/([a-zA-Z0-9][a-zA-Z0-9_]*)/) {
  +             if(/^([a-zA-Z0-9][a-zA-Z0-9_]+)$/) {
                    $cmd .= " --enable-module=$1";
                }
  -             elsif(m:(src/modules/[^/]+/[a-zA-Z0-9][a-zA-Z0-9_]*):) {
  +             elsif(m:(src/modules/[^/]+/[^/]+)$:) {
                    $cmd .= " --activate-module=$1";
                }
            }
  
  
  

Reply via email to