Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 341241
Collapse All | Expand All

(-)a/Proc-ProcessTable-0.45/hints/linux.pl (+10 lines)
Line 1 Link Here
1
symlink "os/Linux.c", "OS.c" || die "Could not link os/Linux.c to os/OS.c\n";
1
symlink "os/Linux.c", "OS.c" || die "Could not link os/Linux.c to os/OS.c\n";
2
3
# We might have a non-threading perl, which doesn't add this
4
# necessary link option.
5
use Config;
6
my $thread_lib = "-lpthread";
7
8
if( $Config{libs} !~ /$thread_lib/ ) {
9
    $self->{LIBS} ||= [];
10
    push @{ $self->{LIBS} }, $thread_lib;
11
    }

Return to bug 341241