blob: 6cc80e7bc5d71abfe81eee474d91c1e05eca1a3e (
plain)
1
2
3
4
5
6
7
8
9
10
|
# 2.6 has nanosleep in -lposix4, after that it's in -lrt
my $r = `/usr/bin/uname -r`;
chomp($r);
if (substr($r, 2) <= 6) {
$self->{LIBS} = ['-lposix4'];
} else {
$self->{LIBS} = ['-lrt'];
}
|