Leser: 16
1
2
3
4
5
6
7
Can't locate loadable object for module Tk::Event in @INC (@INC contains: PERL
XE_STORAGE D:\PERL\Konvertierung C:\DOKUME~1\YAPD\LOKALE~1\Temp/p2xtmp-688) at
RL2EXE_STORAGE/Tk.pm line 13.
Compilation failed in require at PERL2EXE_STORAGE/Tk.pm line 13.
BEGIN failed--compilation aborted at PERL2EXE_STORAGE/Tk.pm line 13.
Compilation failed in require at D:\PERL\Konvertierung\tk.exe line 5.
BEGIN failed--compilation aborted at D:\PERL\Konvertierung\tk.exe line 5.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Sample tk program for Perl2Exe
#perl2exe_exclude "Encode/ConfigLocal.pm"
use Tk;
use Tk::Label;
use Tk::DummyEncode;
#perl2exe_include utf8;
#perl2exe_include "unicore/lib/Perl/Word.pl";
#perl2exe_include "unicore/To/Digit.pl";
#perl2exe_include "unicore/lib/Perl/SpacePer.pl";
#perl2exe_include "unicore/To/Lower.pl";
#perl2exe_include "unicore/Heavy.pl";
#perl2exe_include "Tk.pm";
my $main = new MainWindow;
$main->Label(-text => 'Tk sample')->pack();
my $name_w = $main->Entry(-width => 20)->pack(-padx => 30);
$main->Button(-text => 'Ok', -command => sub{do_ok($name_w)} )
->pack(-side => 'left', -padx => 30);
$main->Button(-text => 'Close', -command => sub{do_close()} )
->pack(-side => 'right', -padx => 30);
MainLoop;
sub do_ok {
my ($name_w) = @_;
my $name_val = $name_w->get;
print "You entered $name_val\n";
}
sub do_close {
exit;
}
2015-10-23T17:55:25 YAPDAllerdings habe ich das bekannte Problem, dass der Inhalt beim Ausführen ( temporär ) in ein Verzeichnis entpackt wird, der Inhalt also klar lesbar ist, also auch sensible Daten wie z. B. Passwörter.
Gibt es hier Möglichkeiten, das zu verhindern, blockieren, den Inhalt
unlesbar zu extrahieren ?
QuotePerl version 5.22.1 ist not supported by CAVA Packager on this platform.
The selected perl cannot be used by CAVA PAckager.