Re: use English fails on ubuntu intrepid (perl 5.10.0)

2008-12-27 Thread Roderich Schupp
On Fri, Dec 26, 2008 at 5:12 PM, Roderich Schupp wrote: > Actually, i18n.pm seems to be real culprit: If I switch the order of the > above "use"s, hello2 runs fine. Same if I replace Term::ReadKey > with another module that has a shared glue library (and isn't one of the > core modules already loa

Re: use English fails on ubuntu intrepid (perl 5.10.0)

2008-12-26 Thread Roderich Schupp
On Tue, Dec 23, 2008 at 3:56 PM, Steffen Mueller wrote: >> But I don't have a solution to my problem with i18n and Curses::UI. Any >> idea about what Module::ScanDeps isn't finding, if that is indeed the >> culprit? > > Hmm. Curses::UI is an oddball. That's putting it modestly. I almost puked wh

Re: use English fails on ubuntu intrepid (perl 5.10.0)

2008-12-23 Thread Steffen Mueller
Hi Alan, Alan Dickey wrote: $ pp -a '/usr/share/perl/5.10/Tie/Hash/NamedCapture.pm;Tie/Hash/NamedCapture.pm' -o hello -e 'use English; print "Hello, world!\n";' Yes, but "pp -M Tie::Hash::NamedCapture" would be better than using -a. I have just committed the fix that Roderich proposed back in

Re: use English fails on ubuntu intrepid (perl 5.10.0)

2008-12-22 Thread Alan Dickey
Roderich; Thanks for the quick response. I guess a workaround for this particular problem is: $ pp -a '/usr/share/perl/5.10/Tie/Hash/NamedCapture.pm;Tie/Hash/NamedCapture.pm' -o hello -e 'use English; print "Hello, world!\n";' $ ./hello Hello, world! But I don't have a solution to my problem w

Re: use English fails on ubuntu intrepid (perl 5.10.0)

2008-12-22 Thread Roderich Schupp
On Mon, Dec 22, 2008 at 7:35 PM, Alan Dickey wrote: > $ pp -e 'use English; print "Hello, world!\n";' -o hello > $ ./hello > Can't locate Tie/Hash/NamedCapture.pm in @INC (@INC contains: > CODE(0x996ffe0) This has come up before: http://groups.google.com/group/perl.par/browse_thread/thread/3f0f7b

Re: use English fails on ubuntu intrepid (perl 5.10.0)

2008-12-22 Thread Alan Dickey
Hello, again; I found another problem on ubuntu intrepid (8.10), perl 5.10.0; $ pp -o hello -e 'use i18n; use Curses::UI; print "Hello, world!\n";' $ ./hello Can't locate object method "print" via package "FileHandle" at /usr/share/perl5/Archive/Zip/Member.pm line 935. Compilation failed in requi

use English fails on ubuntu intrepid (perl 5.10.0)

2008-12-22 Thread Alan Dickey
Hi, PAR; Thanks for the wonderful tool. However, here is a small problem on ubuntu intrepid (8.10), perl 5.10.0. This works correctly on ubuntu hardy (8.04), perl 5.8.8: $ pp --version PAR Packager, version 0.982 (PAR version 0.983) $ pp -e 'use English; print "Hello, world!\n";' -o hello $ ./he