Ask a Question related to PERL Modules, Design and Development.
-
Tulan W. Hu #1
perl and modules
Do I need to rebuild all the perl modules after I
upgrade my perl to a newer version?
Thanks for answering my question in advance.
Tulan W. Hu Guest
-
Using Perl modules in PHP -- ?
As I run screaming back to Perl and my beloved DBI, wherein one can actually use bind variables and fetch a hashref *at the same time* (and without... -
Perl PDF modules - help please
Hi all. I'm trying to write a script which will insert text into a PDF template file and output a new PDF file. I can do this with PDF:Reuse -... -
Perl modules on Mac OS X
Hi fellows, I have a funny problem: When installing my OS (Mac OS 10.3), I did not realize that the 'make' utility was part of the developer tools... -
Re : Installing CPAN Perl Modules with Activestate Perl 5. v5.8
Hi, In the process of trying to get perl modules installed, I downloaded over 300 Activestate specific perl modules and they work fine (of the ones... -
How Can I Install PERL Modules w/o Upgrading PERL?
Shalom! I absolutely hate it when I install a required module for one piece of software or another, and suddenly it begins installing the... -
Iain Truskett #2
Re: perl and modules
* Tulan W. Hu <twhu@lucent.com>:
It's usually best to. In most cases it's necessary.> Do I need to rebuild all the perl modules after I
> upgrade my perl to a newer version?
It should be immediately obvious when you try to
use any of said modules.
cheers,
--
Iain. <http://eh.org/~koschei/>
Iain Truskett Guest
-
Eric J. Roode #3
Re: perl and modules
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
"Tulan W. Hu" <twhu@lucent.com> wrote in news:bljqrq
$8va@netnews.proxy.lucent.com:
Sorry I couldn't answer it in advance. ;-)> Do I need to rebuild all the perl modules after I
> upgrade my perl to a newer version?
>
> Thanks for answering my question in advance.
Usually, you need to rebuild any binary modules (ie, modules that need to
be compiled with a C compiler), because most Perl releases aren't binary-
compatible with previous versions. (I hear, however, that 5.8.1 is b-c
with 5.8.0).
For pure-perl modules, there is an option during the configure phase where
you can tell the build process to retain directories from earlier perl
versions in the new version's @INC, so those modules don't necessarily need
to be reinstalled.
- --
Eric
$_ = reverse sort $ /. r , qw p ekca lre uJ reh
ts p , map $ _. $ " , qw e p h tona e and print
-----BEGIN PGP SIGNATURE-----
Version: PGPfreeware 7.0.3 for non-commercial use <http://www.pgp.com>
iQA/AwUBP311amPeouIeTNHoEQLhVQCgkXSGiU2a+4PgFXxwW52uUV sOENcAoJ5Q
5M+yuqpLqPlPnmdqJgSQpwiE
=h4e+
-----END PGP SIGNATURE-----
Eric J. Roode Guest
-
Tulan W. Hu #4
Re: perl and modules
"Eric J. Roode" <REMOVEsdnCAPS@comcast.net> >
need>> > Do I need to rebuild all the perl modules after I
> > upgrade my perl to a newer version?
> >
> > Thanks for answering my question in advance.
> Sorry I couldn't answer it in advance. ;-)
>
> Usually, you need to rebuild any binary modules (ie, modules that need to
> be compiled with a C compiler), because most Perl releases aren't binary-
> compatible with previous versions. (I hear, however, that 5.8.1 is b-c
> with 5.8.0).
>
> For pure-perl modules, there is an option during the configure phase where
> you can tell the build process to retain directories from earlier perl
> versions in the new version's @INC, so those modules don't necessarilyI understand that if I upgrade perl from 5.6 to 5.8, then I need to rebuild> to be reinstalled.
the
modules and put them to the new @INC. I have built the modules for the
perl 5.8.1-rc4, and now I'm having the released 5.8.1. Do I still need to
rebuild the modules?
I thought that even the binary modules should be ok because I'm using the
same version of gcc and all library locations are the same too. The command
"perl Makefile.PL" just create the Makefile for me with correct the build
flags. I have tried a couple of modules, but it does not seem the rebuild
process makes any difference.
Tulan W. Hu Guest
-
Walt Mankowski #5
Re: perl and modules
In article <bljv0l$aeb@netnews.proxy.lucent.com>, Tulan W. Hu wrote:
5.8.0 and 5.8.1 are binary-compatible with each other, so if that was> I understand that if I upgrade perl from 5.6 to 5.8, then I need to rebuild
> the
> modules and put them to the new @INC. I have built the modules for the
> perl 5.8.1-rc4, and now I'm having the released 5.8.1. Do I still need to
> rebuild the modules?
> I thought that even the binary modules should be ok because I'm using the
> same version of gcc and all library locations are the same too. The command
> "perl Makefile.PL" just create the Makefile for me with correct the build
> flags. I have tried a couple of modules, but it does not seem the rebuild
> process makes any difference.
your upgrade path you'd be fine. Since they didn't change anything
in 5.8.1, it's highly unlikely there'd be anything different in one of
the release candidates.
I'd recommend not rebuilding them by default and running some tests with
the official 5.8.1 and the modules you built with rc4. If everything's
fine, then you don't need to rebuild them.
Walt
Walt Mankowski Guest



Reply With Quote

