# $Id: Unix.pm,v 1.4 2007/09/28 14:35:08 drhyde Exp $
use Devel::CheckOS qw(die_unsupported);
$VERSION = '1.0';
# list of OSes lifted from Module::Build 0.2808
#
sub os_is {
$^O =~ /^(
aix |
bsdos |
dgux |
dragonfly |
dynixptx |
freebsd |
linux |
hpux |
irix |
darwin |
machten |
openbsd |
netbsd |
dec_osf |
svr4 |
svr5 |
sco_sv |
unicos |
unicosmk |
solaris |
sunos |
interix
)$/x ? 1 : 0;
}
die_unsupported() unless(os_is());
1;