You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by do...@apache.org on 2001/01/29 18:43:24 UTC

cvs commit: modperl Makefile.PL

dougm       01/01/29 09:43:24

  Modified:    .        Makefile.PL
  Log:
  include File::Spec at runtime, otherwise fails with oldperls (5.004_04)
  
  Revision  Changes    Path
  1.178     +1 -1      modperl/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /home/cvs/modperl/Makefile.PL,v
  retrieving revision 1.177
  retrieving revision 1.178
  diff -u -r1.177 -r1.178
  --- Makefile.PL	2001/01/26 06:15:45	1.177
  +++ Makefile.PL	2001/01/29 17:43:21	1.178
  @@ -892,7 +892,7 @@
   
   my (%win32_path);
   if ($win32_auto) {
  -  use File::Spec;
  +  require File::Spec;
     win32_inc_and_lib();
     win32_fix_dsp();
   }