On 9/14/07, sivasakthi <[EMAIL PROTECTED]> wrote:
> Hi guys,
>
> is it possible to building the perl programmes by using the make/gmake
> utility..??
snip

That depends on what you mean.  Perl modules are typically built using
the following method

tar xvfz Module.tgz
cd Module
perl Makefile.PL
make
make test
make install

Although, if you have access to the Internet from the machine, it is
often much simpler to say

(older Perl installs)
perl -MCPAN -e install Module

(newer Perl installs)
cpan install Module

since this will download and build the module and all of its
dependencies for you.  However, you may still need a C compiler and/or
some external libraries for some modules (e.g. the Gtk2 module
requires libgtk and a C compiler).

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to