Leser: 19
1 2 3 4 5 6 7 8 9 10 11 12
use strict; use warnings; use Tk; my $meinFenster = MainWindow->new; $meinFenster->Label( -text=>"Huhu" )->pack; $meinFenster->Label(-text => "Alles faengt mal klein an. (-:")->pack; $meinFenster->Button(-text => "---------Klick mich-----------", -command => [$meinFenster => 'destroy'] )->pack; MainLoop;
pp -o a.out a.pl
2009-11-19T09:32:04 reneezu 1.) Gibt es inkompatibilitäten zwischen RedHat 4 und RedHat 5?
Quotezu 2.) Ja
QuoteBut even in this case, the underlying system libraries such as libc must be compatible between the host and target machines.
2009-11-20T14:28:36 reneeTk wird ja mit eingepackt, sonst würde es ja auf einem RedHat 5 ohne Tk nicht laufen...