>I have a spare box to test with if you can let me know what to do/try.
The full test output will be helpful
cpan> look Module::Build
$ perl Build.PL
$ perl Build
$ perl Build test --test_files t/compat.t --verbose 1
If you can checkout from svn, the repository is at:
https://svn.perl.org/modules/Module-Build/trunk
I did:
'svn export https://svn.perl.org/modules/Module-Build/trunk mb'
cd mb
perl Build.PL which gives:
[EMAIL PROTECTED] mb]# perl Build.PL
Checking whether your kit is complete...
WARNING: the following files are missing in your kit:
META.yml
README
Please inform the author.
Checking prerequisites...
* Optional prerequisite Module::Signature is not installed
* Optional prerequisite ExtUtils::ParseXS is not installed
* Optional prerequisite version is not installed
* Optional prerequisite Pod::Readme is not installed
* Optional prerequisite ExtUtils::CBuilder is not installed
ERRORS/WARNINGS FOUND IN PREREQUISITES. You may wish to install the versions
of the modules indicated above before proceeding with this installation
Checking features:
manpage_support....enabled
YAML_support.......enabled
C_support..........disabled
- ExtUtils::CBuilder is not installed
* Optional prerequisite ExtUtils::ParseXS is not installed
HTML_support.......enabled
Creating new 'Build' script for 'Module-Build' version '0.2805'
---------- end output ---------
So at this point I went and installed the "Optional prerequisites" via
CPAN, one of which may have installed ExtUtils::CBuilder as it was
already installed and up-to-date when I tried to install it.
I then did:
perl Build.PL which gives:
[EMAIL PROTECTED] mb]# perl Build.PL
Checking whether your kit is complete...
WARNING: the following files are missing in your kit:
META.yml
README
Please inform the author.
Checking prerequisites...
Looks good
Checking features:
YAML_support.......enabled
manpage_support....enabled
C_support..........enabled
HTML_support.......enabled
Deleting Build
Removed previous script 'Build'
Creating new 'Build' script for 'Module-Build' version '0.2805'
----- end of output
Then:
perl Build which outputs some stuff - No errors.
Then:
perl Build test --test_files t/compat.t --verbose 1
There were no errors reported and at the end:
ok
All tests successful.
Files=1, Tests=60, 296 wallclock secs (144.91 cusr + 151.25 csys = 296.16 CPU)
So now all I need is a 'sudo Build install', right?
Please let me know if I goofed up any of the steps and I'll redo them if needed.