|
I've tried cpan and cpanp shell and I keep getting:
ExtUtils::PkgConfig requires the pkg-config utility, but it doesn't seem to be in your PATH. Is it correctly installed?
What is the pkg-config utility and how do I install it?
Updates:
OS: Windows This...
Started by Notitze on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Want to install ExtUtils::PkgConfig? Not knowing what pkg-config is makes that seem an odd thing..
|
|
Hello,
I was trying to install Lingua-EN-Fathom when I got the error:
Can't locate ExtUtils/MakeMaker.pm
Then I try to install ExtUtils-MakeMaker. The Makefile.PL works fine but when I do "make", I got the error:
make: *** No rule to make target `/usr...
Started by sunsetgarden on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at fedoraforum):
Code: $ perl Makefile.PL Writing Makefile for ExtUtils::MakeMaker $ make make Signature, key ID 192a7d7d: NOKEY
error: Failed dependencies:
perl(ExtUtils::Installed) is needed by perl-devel-4:5.10.1-11....
And unzipped.
|
|
On Thu, 30 Apr 2009 09:58:09 -0700, "David Christensen" <dpchrist@holgerdanske.com
Cygwin:
I've packaged a Perl script into a module distribution using
ExtUtils::MakeMaker:
http://www.holgerdanske.com/system/files/newest-1.012.tar.gz
When...
Started by David Christensen on
, 5 posts
by 2 people.
Answer Snippets (Read the full thread at omgili):
A patch.
See MM_Unix.pm
Please complain at ExtUtils::MakeMaker.
ExtUtils::MakeMaker doesn't include all :: manifypods on cygwin, because
this is a unix extension only.
The .packlist into sitearch.
|
Ask your Facebook Friends
|
On Fri, 01 May 2009 11:02:20 +0200, Reini Urban <rurban@x-ray.at
David Christensen schrieb:
Just a hint: Please do *NOT* use lowercase package
names for non-pragmas.
See http://www.cpan.org/modules/04pause.html#namespace
"newest" is certainly a...
Started by Reini Urban on
, 4 posts
by 2 people.
Answer Snippets (Read the full thread at omgili):
How about Dpchrist::File::Newest?
http://www.holgerdanske.com/node/460
2009-05-01 08:51:42 Administrator....
:-)
Yes; bad laziness.
On Fri, 1 May 2009 09:26:58 -0700, "David Christensen" <dpchrist@holgerdanske.com
Thank you for your help .
|
|
On Sun, 24 Aug 2008 18:42:54 +0200, "Reini Urban" <rurban@x-ray.at
2008/8/24 Yaakov (Cygwin Ports):
Did you look into the root cause for this headache, libtool?
Sooner or later I want to get back to normal perl builds, with libWin32CORE.a
being...
Started by Reini Urban on
, 5 posts
by 3 people.
Answer Snippets (Read the full thread at omgili):
I was referring.
It had to do with the
unique case of linking one Perl module against another.
|
|
Hello,
ExtUtils::Install creates directries with 0755 by default, ditto for
ExtUtils::MM_Any (blib directories). Probably, there should be a way to
override the default directory creation mode. Alternatively, the module
could allow user's umask take ...
Started by Rajesh.Mandalemula@deshaw.com on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at omgili):
Http://ftp.de.debian.org/debian/pool/main....
They strip the hard coded 0755
out of ExtUtils::Install and presumably use the umask.
To override the default umask would remove one of the Debian
patches to Perl that's been in there for ages.
|
|
How can I find the standard site_perl (non-arch specific) location? Is it safe to just loop over @INC and find the path ending with "site_perl", or is there a standard way to do this?
The reason for trying to find this, is I have a very large project ...
Started by Matthew Watson on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
C:\Temp> perl -MConfig -e "print qq{$_ => $Config{$_}\n} for grep { /site/ } keys %Config" d_sitearch....
If you are trying to determine where a given module is installed use %INC .
May contain multiple directories that end in site_perl.
|
|
I'd like to install a Perl module (in this case, FindBin ), but since it is included in the perl5.10.1 distribution , cpan wants to install perl5.10 for me. Is there any way of installing just the module via cpan? The only option that I can see is installing...
Started by Ether on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Use FindBin Dropping FindBin.pm into your Perl library directory Using the source code of the module in your script >corelist FindBin FindBin was first released with perl 5.00307
Which version of Perl do you use that does not....
|
|
M:B declares an unversioned dependency on ExtUtils::Install. There is a
bug in EU:I 0.29 that causes a M:B fakeinstall to be insufficiently fake:
it actually creates the libdir and the directory to contain the packlist.
This shows up in the M:B test ...
Started by zefram@fysh.org on
, 7 posts
by 4 people.
Answer Snippets (Read the full thread at omgili):
Have you uploaded the fix already or are you waiting on me?
Yves
--
perl -Mre=debug -e "/just|another|perl|hacker/"
2009/2/9 Michael G Schwern <schwern@pobox.com
Actually, these days i more or less consider the ....
Great, thanks.
|
|
Looking for some insight on how to add multiple PM files to the MakeMaker script?
I see this documentation and all the examples look like one file is added, how do I add multiple files?
use ExtUtils::MakeMaker; WriteMakefile( NAME => 'Your::Module'...
Started by Phill Pafford on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The ExtUtils::MakeMaker doc says:
Hashref of .pm files and *.pl.
Perhaps you could try to use PM.
|