pkgsrc-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: pkg/39095 (Can't locate loadable object for module List::MoreUtils)



The following reply was made to PR pkg/39095; it has been noted by GNATS.

From: Jens Rehsack <rehsack%web.de@localhost>
To: Christoph Badura <bad%NetBSD.org@localhost>
Cc: gnats-bugs%NetBSD.org@localhost
Subject: Re: pkg/39095 (Can't locate loadable object for module List::MoreUtils)
Date: Mon, 21 Jul 2008 20:26:53 +0000

 Christoph Badura wrote:
 > I can not reproduce the error locally.
 > Can you provide example code that produces the error?
 > 
 
 Hi Chris,
 
 as described, this is not really an error, it's more a "why is the much 
 faster .xs disabled?".
 
 You may reproduce the problem using at least 2 files:
 
 1) catchProblems.pm
 package catchProblems;
 
 use strict;
 use warnings;
 
 sub warnUncaught
 {
        print( STDERR "Unhandled exception caught:", @_, "\n" );
 }
 
 SIG{__DIE__} = \&warnUncaught;
 
 1;
 
 2) tryIt.pl
 #!/usr/bin/perl
 
 use strict;
 use warnings;
 
 use catchproblems;
 use List::MoreUtils;
 
 print( "Hello world\n" );
 
 ---------------------------------
 
 I'm not sure if the problem will raise with any OS, but it raised under AIX.
 We use similar code to track unidentified problems (for warn and die) to 
 avoid surprises in production environments ;)
 
 Best regards,
 Jens
 
 PS: Sorry for the late reply, but we're working on a perl-application port 
 from Linux to AIX which must be ready for production before mid of august, 
 so I scheduled most non-critical tasks after the coding is finished :)
 


Home | Main Index | Thread Index | Old Index