mirror of
https://codeberg.org/scip/Config-General.git
synced 2025-12-17 12:41:07 +01:00
2.36
- oh my goodness! For some unknown reason I deleted the Makefile.PL before packaging. Dammit. So, here it is again. git-svn-id: http://dev.catalyst.perl.org/repos/Config-General/trunk@62 be1acefe-a474-0410-9a34-9b3221f2030f
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2.36
|
||||||
|
- oh my goodness! For some unknown reason I deleted the
|
||||||
|
Makefile.PL before packaging. Dammit. So, here it is
|
||||||
|
again.
|
||||||
|
|
||||||
2.35
|
2.35
|
||||||
- 'make test' failed under perl 5.5 because some prequisite
|
- 'make test' failed under perl 5.5 because some prequisite
|
||||||
modules were not found. So now I added all requirements
|
modules were not found. So now I added all requirements
|
||||||
|
|||||||
16
Makefile.PL
16
Makefile.PL
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# Makefile.PL - build file for Config::General
|
# Makefile.PL - build file for Config::General
|
||||||
#
|
#
|
||||||
# Copyright (c) 2000-2006 Thomas Linden <tom@daemon.de>.
|
# Copyright (c) 2000-2007 Thomas Linden <tom@daemon.de>.
|
||||||
# All Rights Reserved. Std. disclaimer applies.
|
# All Rights Reserved. Std. disclaimer applies.
|
||||||
# Artificial License, same as perl itself. Have fun.
|
# Artificial License, same as perl itself. Have fun.
|
||||||
#
|
#
|
||||||
@@ -9,8 +9,16 @@
|
|||||||
use ExtUtils::MakeMaker;
|
use ExtUtils::MakeMaker;
|
||||||
|
|
||||||
WriteMakefile(
|
WriteMakefile(
|
||||||
'NAME' => 'Config::General',
|
'NAME' => 'Config::General',
|
||||||
'VERSION_FROM' => 'General.pm', # finds $VERSION
|
'VERSION_FROM' => 'General.pm',
|
||||||
'clean' => { FILES => 't/*.out t/test.cfg *~ */*~' },
|
'clean' => {
|
||||||
|
FILES => 't/*.out t/test.cfg *~ */*~'
|
||||||
|
},
|
||||||
|
'PREREQ_PM' => {
|
||||||
|
'IO::File' => 0,
|
||||||
|
'FileHandle' => 0,
|
||||||
|
'File::Spec::Functions' => 0,
|
||||||
|
'File::Glob' => 0
|
||||||
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user