RE: I am really confused how perlapp works
by Jan Dubois other posts by this author
Jul 3 2009 2:43PM messages near this date
I am really confused how perlapp works
|
weird string literal encoding
The error message indicates that you are missing additional DLLs; probably at least prigraph
.dll, but maybe others. How did you
install Prima? Did you build it yourself (which additional libraries did you use?) or did y
ou download it via PPM (where did you
download it from? which version?).
Cheers,
-Jan
From: pdk-bounces@[...].com [mailto:pdk-bounces@[...].com] On Behalf Of Waldemar Biernacki
Sent: Friday, July 03, 2009 2:28 PM
To: pdk@[...].com
Subject: I am really confused how perlapp works
Importance: High
I want to make exe program from the enclosed script (Prima library). It works perfect as a s
cript but if I wanted to compile it with
the perlapp then I got an error. The script and the perlapp answer are enclosed.
I was searching in Internet and found nothing what could help me. It is extremely frustratin
g that perlapp get me so little
information and I cannot manage with the - in fact - simple library dependences. I was tryin
g to add dll, modules, dependance and
nothing help.
Please help me!
Waldemar
PS. This message: "Nie mo�na odnale�� okre�lonego modu�u" means: "cannot found THE
module". Is that Prima.dll? Of course it is where
it read...
W.
=================================
#!/usr/bin/perl -w
use strict;
use warnings;
use Prima qw(Application Buttons);
new Prima::MainWindow(
text => 'Hello world!',
size => [ 200, 200],
)-> insert( Button =>
centered => 1,
text => 'Hello world!',
onClick => sub { $::application-> close },
);
run Prima;
__END__
============================================================================
perlapp --exe amba.exe amba.pl
============================================================================
PerlApp 8.0.1 build 289861 (perl 5.10.0)
Copyright (C) 1998-2009 ActiveState Software Inc. All rights reserved.
Standard license ...
Can't load 'C:/Perl/site/lib/auto/Prima/Prima.dll' for module Prima: load_file:Nie mo�na o
dnale�� okre�lonego modu�u at /<C:\Program
Files\ActiveState Perl Dev Kit 8.0.1\bin\lib\pdkcheck.exe> DynaLoader.pm line 217.
at test1.pl line 8
Compilation failed in require at test1.pl line 8.
BEGIN failed--compilation aborted at test1.pl line 8.
'test1.pl' had compilation errors.
[DONE]
Thread:
Waldemar Biernacki
Jan Dubois
|