Re: module versions

2013-05-15 Thread shawn wilson
On Wed, May 15, 2013 at 4:13 PM, Ron Bergin wrote: > shawn wilson wrote: >> I asked this in #perl-help and was told that by the time perl checked >> the version, the module was already loaded - is there a way to check >> the version without completely loading the module so that when one >> failed,

Re: module versions

2013-05-15 Thread Ron Bergin
shawn wilson wrote: > I asked this in #perl-help and was told that by the time perl checked > the version, the module was already loaded - is there a way to check > the version without completely loading the module so that when one > failed, I could move on to another module of the same name whose

Re: module versions

2013-05-15 Thread Peter Eztta
How about using ExtUtils::MakeMaker or Module::Build and checking for the required version at build time? I suppose this doesn't address the desire to use a different version if the one you're looking for isn't present though... Regards, Peter H. Ezetta On Wed, May 15, 2013 at 12:55:25PM -070

Re: module versions

2013-05-15 Thread shawn wilson
On Wed, May 15, 2013 at 3:28 PM, Octavian Rasnita wrote: > From: "shawn wilson" > > > >> I asked this in #perl-help and was told that by the time perl checked >> the version, the module was already loaded - is there a way to check >> the version without completely loading the module so that when

Re: module versions

2013-05-15 Thread Octavian Rasnita
From: "shawn wilson" I asked this in #perl-help and was told that by the time perl checked the version, the module was already loaded - is there a way to check the version without completely loading the module so that when one failed, I could move on to another module of the same name whose ve