Module::Build's contrib directory should be marked as EXCLUDED from the core.
[p5sagit/p5-mst-13.2.git] / ext / Time-HiRes / hints / solaris.pl
CommitLineData
4ed0e2d4 1# 2.6 has nanosleep in -lposix4, after that it's in -lrt
3db79780 2my $r = `/usr/bin/uname -r`;
3chomp($r);
4if (substr($r, 2) <= 6) {
4ed0e2d4 5 $self->{LIBS} = ['-lposix4'];
6} else {
7 $self->{LIBS} = ['-lrt'];
8}
9
0225372c 10