cvsuser     05/01/07 05:03:36

  Modified:    App-Options Makefile.PL
  Log:
  reintroduce VERSION_FROM, document dependence on Config module
  
  Revision  Changes    Path
  1.8       +4 -3      p5ee/App-Options/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /cvs/public/p5ee/App-Options/Makefile.PL,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- Makefile.PL       28 Dec 2004 22:28:24 -0000      1.7
  +++ Makefile.PL       7 Jan 2005 13:03:36 -0000       1.8
  @@ -1,6 +1,6 @@
   
   ######################################################################
  -## File: $Id: Makefile.PL,v 1.7 2004/12/28 22:28:24 spadkins Exp $
  +## File: $Id: Makefile.PL,v 1.8 2005/01/07 13:03:36 spadkins Exp $
   ######################################################################
   
   use ExtUtils::MakeMaker;
  @@ -14,16 +14,17 @@
   %opts = (
       'NAME'         => 'App-Options',
       'DISTNAME'     => 'App-Options',
  -    'VERSION'      => '0.92',
  +    'VERSION_FROM' => 'lib/App/Options.pm',
       'EXE_FILES'    => [ @programs ],
       'PREREQ_PM'    => {
           "Carp"           => 0,  # use croak() instead of die()
           "Sys::Hostname"  => 0,  # use hostname() to get hostname/host options
           "Cwd"            => 0,  # use abs_path() to turn relative to 
absolute directory
           "File::Spec"     => 0,  # make directory handling work 
cross-platform (i.e. MSWin)
  +        "Config"         => 0,  # find prefix directory for the installation 
of perl
       },
       'dist'         => {'COMPRESS'=>'gzip -9f', 'SUFFIX' => 'gz',
  -                      'ZIP'=>'/usr/bin/zip','ZIPFLAGS'=>'-rl'},
  +                       'ZIP'=>'/usr/bin/zip', 'ZIPFLAGS'=>'-rl'},
   );
   
   WriteMakefile(%opts);
  
  
  

Reply via email to