[Module-build-checkins] Module-Build Changes,1.376,1.377 Build.PL,1.58,1.59
Status: Beta
Brought to you by:
kwilliams
|
From: Ken W. <kwi...@us...> - 2005-09-22 02:00:44
|
Update of /cvsroot/module-build/Module-Build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16641 Modified Files: Changes Build.PL Log Message: Reorganize dependencies a little Index: Build.PL =================================================================== RCS file: /cvsroot/module-build/Module-Build/Build.PL,v retrieving revision 1.58 retrieving revision 1.59 diff -u -d -r1.58 -r1.59 --- Build.PL 28 Jul 2005 02:56:51 -0000 1.58 +++ Build.PL 22 Sep 2005 02:00:35 -0000 1.59 @@ -40,7 +40,6 @@ recommends => { 'Archive::Tar' => '1.08', 'ExtUtils::Install' => 0.30, - 'ExtUtils::ParseXS' => 2.02, 'Pod::Readme' => 0.04, 'Module::Signature' => 0.21, }, @@ -59,7 +58,8 @@ C_support => { description => "Can compile/link C & XS code", - requires => { 'ExtUtils::CBuilder' => 0.02 }, + requires => { 'ExtUtils::CBuilder' => 0.02, + 'ExtUtils::ParseXS' => 2.02, }, }, manpage_support => { Index: Changes =================================================================== RCS file: /cvsroot/module-build/Module-Build/Changes,v retrieving revision 1.376 retrieving revision 1.377 diff -u -d -r1.376 -r1.377 --- Changes 22 Sep 2005 01:26:28 -0000 1.376 +++ Changes 22 Sep 2005 02:00:35 -0000 1.377 @@ -5,6 +5,9 @@ - Our POD parser will now accept "AUTHORS" as well as "AUTHOR" when looking for the author list in a module. [David Wheeler] + - The recommended dependency on ExtUtils::ParseXS has been moved into + the "C_support" auto_feature. + - The synonyms 'scripts' and 'prereq' for 'script_files' and 'requires' were broken in a previous version (0.27_01, probably), but now they're fixed. [David Golden] |