SIGAR-43 freebsd update

Submitted By: Nicolas Laurent
This commit is contained in:
Doug MacEachern 2007-02-28 05:14:24 +00:00
parent 30c1d35714
commit 247937d0bb
1 changed files with 12 additions and 0 deletions

View File

@ -33,6 +33,18 @@ sub get_name {
elsif ($os =~ /darwin/) {
return 'universal-macosx';
}
elsif ($os =~ /freebsd/) {
if($arch =~ /.86/) {
if($vers =~ /6\../ ) {
return 'x86-freebsd-6';
}
}
elsif( $arch =~ /amd64/) {
if($vers =~ /6\../ ) {
return 'amd64-freebsd-6';
}
}
}
die "Unsupported platform";
}