Subject: | Makefile.PL requirements are incorrect |
PREREQ_PM has trailing "::"s on the module names, which doesn't work. Small patch attached removes the extra "::"s and MakeMaker can properly check the dependencies and CPAN.pm can auot install them.
--- ./Makefile.PL.orig 2003-10-30 12:52:38.000000000 +0000
+++ ./Makefile.PL 2003-10-30 12:52:58.000000000 +0000
@@ -48,9 +48,9 @@
WriteMakefile(
PREREQ_FATAL => 1,
PREREQ_PM => {
- Glib:: => $build_reqs{'perl-Glib'},
- ExtUtils::Depends:: => $build_reqs{'perl-ExtUtils-Depends'},
- ExtUtils::PkgConfig:: => $build_reqs{'perl-ExtUtils-PkgConfig'},
+ Glib => $build_reqs{'perl-Glib'},
+ ExtUtils::Depends => $build_reqs{'perl-ExtUtils-Depends'},
+ ExtUtils::PkgConfig => $build_reqs{'perl-ExtUtils-PkgConfig'},
},
);
exit 1; # not reached
@@ -151,9 +151,9 @@
# PREREQ see beginning of file
PREREQ_FATAL => 1,
PREREQ_PM => {
- Glib:: => $build_reqs{'perl-Glib'},
- ExtUtils::Depends:: => $build_reqs{'perl-ExtUtils-Depends'},
- ExtUtils::PkgConfig:: => $build_reqs{'perl-ExtUtils-PkgConfig'},
+ Glib => $build_reqs{'perl-Glib'},
+ ExtUtils::Depends => $build_reqs{'perl-ExtUtils-Depends'},
+ ExtUtils::PkgConfig => $build_reqs{'perl-ExtUtils-PkgConfig'},
},
FUNCLIST => \@exports,
DL_FUNCS => { Gtk2 => [] },