RE: Trouble putting together a stand alone

2011-02-18 Thread Michael Miller
1) Failed test: 1 Non-zero exit status: 2 Parse errors: Bad plan. You planned 3 tests but ran 1. Files=5, Tests=2, 35 wallclock secs ( 0.03 usr 0.01 sys + 34.69 cusr 0.27 csys = 35.00 CPU) Result: FAIL Failed 3/5 test programs. 2/2 subtests failed. *** Error code 2 (bu21) /usr/bin/make test --

RE: Trouble putting together a stand alone

2011-02-18 Thread Michael Miller
0.27 csys = 35.00 CPU) Result: FAIL Failed 3/5 test programs. 2/2 subtests failed. *** Error code 2 (bu21) /usr/bin/make test -- NOT OK cpan> I'll continue to play with this and see if I can get things working but any advice is much appreciated. Thanks! -Mike -Origi

RE: Trouble putting together a stand alone

2011-02-17 Thread Michael Miller
y, February 16, 2011 10:37 PM To: 'Roderich Schupp' Cc: par@perl.org Subject: RE: Trouble putting together a stand alone I took your advice and I'm trying to get Par-Packer up and running on my SCO 5.0.6 box. I finally got a working compiler but I'm having trouble getting P

RE: Trouble putting together a stand alone

2011-02-16 Thread Michael Miller
1. Any help on getting pp up and running on my SCO 5.0.6 is much appreciated. Thanks. -Mike -Original Message- From: Roderich Schupp [mailto:roderich.sch...@googlemail.com] Sent: Wednesday, February 16, 2011 3:45 AM To: Michael Miller Cc: par@perl.org Subject: Re: Trouble putting toge

Re: Trouble putting together a stand alone

2011-02-16 Thread Roderich Schupp
On Tue, Feb 15, 2011 at 9:47 PM, Michael Miller wrote: > Floating exception - core dumped > > So my deployment package to the 1st target box works but the 2nd target (SCO > 5.0.6) does not. Well, the packed executable is kinda sensitive to the OS environment, so I wouldn't expect it to work on e

RE: Trouble putting together a stand alone

2011-02-15 Thread Michael Miller
t I'm pretty bummed it didn't work out of the gate. Thanks again for your help. -Mike -Original Message- From: Roderich Schupp [mailto:roderich.sch...@googlemail.com] Sent: Tuesday, February 15, 2011 1:57 AM To: Michael Miller Cc: par@perl.org Subject: Re: Trouble putting

Re: Trouble putting together a stand alone

2011-02-14 Thread Roderich Schupp
On Mon, Feb 14, 2011 at 10:24 PM, Roderich Schupp wrote: > Sorry, there's nothing I can do on the PAR::Packer side. If you know > the right incantation > to stop gcc hardwiring library references, patch the above line in > myldr/Makefile and let me know. Another idea: if you also have the static

Re: Trouble putting together a stand alone

2011-02-14 Thread Roderich Schupp
On Mon, Feb 14, 2011 at 7:17 PM, Michael Miller wrote: > LWP will support https URLs if the Crypt::SSLeay module is installed > AND > 500 Can't locate object method "new" via package > "LWP::Protocol::https::Socket" > > I guess I'm missing a shared library or something I need to copy over to the

Re: Trouble putting together a stand alone

2011-02-14 Thread Roderich Schupp
On Mon, Feb 14, 2011 at 4:31 PM, Michael Miller wrote: > Here's the output from the 'readelf' command: > > Dynamic segment at offset 0xf040 contains 20 entries: >  Tag        Type                         Name/Value >  0x0001 (NEEDED)                     Shared library: > [/usr/lib/perl5/5.8/i

RE: Trouble putting together a stand alone

2011-02-14 Thread Michael Miller
ny help is much appreciated ... I'm so close to having this thing working. :-) Thanks! -Mike -Original Message- From: Roderich Schupp [mailto:roderich.sch...@googlemail.com] Sent: Monday, February 14, 2011 9:28 AM To: Michael Miller Cc: par@perl.org Subject: Re: Trouble putting together a st

RE: Trouble putting together a stand alone

2011-02-14 Thread Michael Miller
chael Miller Cc: par@perl.org Subject: Re: Trouble putting together a stand alone On Mon, Feb 14, 2011 at 3:16 PM, Michael Miller wrote: > Then I ran 'make' and got: Hmm, looks good. If you're in the toplevel build directory for PAR::Packer, what is the output of: $ reade

Re: Trouble putting together a stand alone

2011-02-14 Thread Roderich Schupp
On Mon, Feb 14, 2011 at 3:16 PM, Michael Miller wrote: > Then I ran 'make' and got: Hmm, looks good. If you're in the toplevel build directory for PAR::Packer, what is the output of: $ readelf -d myldr/par My guess: it's a RUNPATH vs RPATH issue. Cheers, Roderich

RE: Trouble putting together a stand alone

2011-02-14 Thread Michael Miller
build machine to the target machine in that directory then './testy' does work and prints out "Hello world" on the target machine. Thanks Roderich! Let me know what to try next. I've can get things to work but it would be great to get libperl.so embedded so I don't ha

Re: Trouble putting together a stand alone

2011-02-14 Thread Roderich Schupp
On Mon, Feb 14, 2011 at 12:01 AM, Michael Miller wrote: > On the target machine, I copied the testy package and when I run it I get the > following error: > Dynamic linker : ./testy : could not open > /usr/lib/perl5/5.8/i586-pc-sco3.2v5.0/CORE/libperl.so > > I'm assuming this means I need to inc

RE: Trouble putting together a stand alone

2011-02-13 Thread Michael Miller
urday, February 12, 2011 10:41 AM To: Michael Miller Cc: par@perl.org Subject: Re: Trouble putting together a stand alone On Fri, Feb 11, 2011 at 5:48 PM, Michael Miller wrote: > I'm still having trouble and need some more advice. I created a simple > testy.pl script with the foll

Re: Trouble putting together a stand alone

2011-02-12 Thread Roderich Schupp
On Fri, Feb 11, 2011 at 6:23 PM, Michael Miller wrote: > I tried: > > pp -B -P -o packed.pl testy.pl "pp -B ..." is pretty broken and probably won't get fixed anytime soon :( > As far as my goal, is PAR-Packer the answer or am I complicating things. No, PAR::Packer is the way to go if you want

Re: Trouble putting together a stand alone

2011-02-12 Thread Roderich Schupp
On Fri, Feb 11, 2011 at 5:48 PM, Michael Miller wrote: > I'm still having trouble and need some more advice. I created a simple > testy.pl script with the following in it: > > use Digest::SHA; > print "Hello world"; > > When I run "perl testy.pl" I get "Hello world" printed to the console.  So it

RE: Trouble putting together a stand alone

2011-02-11 Thread Michael Miller
0:49 AM To: Roderich Schupp Cc: par@perl.org Subject: RE: Trouble putting together a stand alone Sorry about the screenshot; won't happen again. I'm still having trouble and need some more advice. I created a simple testy.pl script with the following in it: use Digest::SHA; print "Hell

RE: Trouble putting together a stand alone

2011-02-11 Thread Michael Miller
ssage- From: Roderich Schupp [mailto:roderich.sch...@googlemail.com] Sent: Friday, February 11, 2011 3:48 AM To: Michael Miller Cc: par@perl.org Subject: Re: Trouble putting together a stand alone On Fri, Feb 11, 2011 at 2:14 AM, Michael Miller wrote: > I’m having trouble using the par pack

Re: Trouble putting together a stand alone

2011-02-11 Thread Roderich Schupp
On Fri, Feb 11, 2011 at 2:14 AM, Michael Miller wrote: > I’m having trouble using the par packer and was wondering if someone could > give me some direction. > Below is a screenshot of the error I’m getting: Please don't post screenshots (unless your problem really is the graphic appearance), as