Ask a Question related to PERL Modules, Design and Development.
-
mmccaws2 #1
Module may not be right one?
Hi
My script, originally from Roth, is trying to run win32::daemon. I get
this error message
D:\Perl\perlstuff>perl Example_5_3.pl
Can't locate Win32/Daemon.pm in @INC (@INC contains: D:/Perl/lib
D:/Perl/site/li
b .) at Example_5_3.pl line 16.
BEGIN failed--compilation aborted at Example_5_3.pl line 16.
The win32::daemon module that is installed is from activestate called
Win32-Daemon-Simple. Are these not compatible?
I tried to download the zip and install roth's win32::daemon
however it complains and stops, what I am doing wrong? Here is the
commands I tried neither worked
D:\Perl\pkgs>ppm install d:\perl\pkgs\win32-daemon.ppd
Error: no suitable installation target found for package Win32-Daemon.
D:\Perl\pkgs>ppm install d:\perl\pkgs\daemon.pm
Searching for 'd:\perl\pkgs\daemon.pm' returned no results. Try a
broader search
first.
Thanks
Mike
mmccaws2 Guest
-
How to set module to be on top of another module
hello guys!! i'm just newbie in flex, and cant figured out how to manage loaded modules to set who's on top of each other. if i load one module... -
RFC: New module 'Module::Bundled::Files'
I've written a module, tentatively named Module::Bundled::Files. A section of the POD docs is included to (attempt) to explain it's purpose. It... -
looking for a module
has anyone ever seen modules with any of these features? 1) take a block of text and list all words in alpha order a) list word only once with... -
Module Object and sub module function
Howdy folks, Yet another module question. I'm so close and I've done this but I can't get it to work. I am writing a module that is an... -
nvnet module not working after kernel (and module) recompile
--- SYNeR <tups77@tsn.cc> escribió: Make sure that when you 'make-kpkg <options here> kernel_image kernel_headers' that you have that... -
Paul Lalli #2
Re: Module may not be right one?
mmccaws2 wrote:
It has nothing to do with compatability, they're simply not the same> My script, originally from Roth, is trying to run win32::daemon. I get
> this error message
>
> D:\Perl\perlstuff>perl Example_5_3.pl
> Can't locate Win32/Daemon.pm in @INC (@INC contains: D:/Perl/lib
> D:/Perl/site/li
> b .) at Example_5_3.pl line 16.
> BEGIN failed--compilation aborted at Example_5_3.pl line 16.
>
> The win32::daemon module that is installed is from activestate called
> Win32-Daemon-Simple. Are these not compatible?
module, any more than Foo::Bar is the same module as Data::Doit. Just
because they have similar names, doesn't mean they're even related, let
alone the same thing.
If your module needs Win32::Daemon (not win32::daemon - case matters),
then you need to install Win32::Daemon, not Win32::Daemon::Simple.
I don't know a lot about ppm, but that seems odd. You generall just> I tried to download the zip and install roth's win32::daemon
>
> however it complains and stops, what I am doing wrong? Here is the
> commands I tried neither worked
>
> D:\Perl\pkgs>ppm install d:\perl\pkgs\win32-daemon.ppd
provide the name of the module, and let ppm go out to its repositiries
and find it:
ppm install Win32::Daemon
Paul Lalli
Paul Lalli Guest
-
Sisyphus #3
Re: Module may not be right one?
"Paul Lalli" <mritty@gmail.com> wrote in message
..
..For that to work you would probably have to first add Roth's repository to>
> ppm install Win32::Daemon
>
ppm's list - not sure how to do that but it should be well documented.
Alternatively, I *think* the following will do the trick:
ppm install [url]http://www.roth.net/perl/packages/win32-daemon.ppd[/url]
or perhaps it needs to be:
ppm install [url]http://www.roth.net/perl/packages/Win32-Daemon.ppd[/url]
The instructions at [url]http://www.roth.net/perl/[/url] are pretty crappy and
outdated, but I think it's all there and accessible.
Cheers,
Rob
Sisyphus Guest
-
Dr.Ruud #4
Re: Module may not be right one?
Sisyphus schreef:
> Paul Lalli:ppm> rep add RothConsulting [url]http://www.roth.net/perl/packages[/url]>>> ppm install Win32::Daemon
> For that to work you [...] have to first add Roth's
> repository to ppm's list
--
Affijn, Ruud
"Gewoon is een tijger."
Dr.Ruud Guest
-
mmccaws2 #5
Re: Module may not be right one?
Dr.Ruud wrote:You guys are great. I'm set.> Sisyphus schreef:>> > Paul Lalli:>> >> >> ppm install Win32::Daemon
> > For that to work you [...] have to first add Roth's
> > repository to ppm's list
> ppm> rep add RothConsulting [url]http://www.roth.net/perl/packages[/url]
>
> --
> Affijn, Ruud
>
> "Gewoon is een tijger."
Thanks
mmccaws2 Guest



Reply With Quote

