DBD-Oracle
view release on metacpan or search on metacpan
hints/svr4.pl view on Meta::CPAN
my $archname = $Config::Config{archname} || die;
$att{LIBS} ||= [];
$att{LIBS}->[0] ||= '';
# Some SVR4 systems may need to link against -lc to pick up things like
# fpsetmask, sys_nerr and ecvt.
my @libs = qw(-lsocket -lnsl -lm -ldl); # general svr4 default
# modified by Davide Migliavacca <davide.migliavacca@inferentia.it>
if ($archname eq 'RM400-svr4') {
@libs = qw(-lucb);
}
push @libs, '-lc';
warn "$^O LIBS attribute defaulted to '$att{LIBS}->[0]' for '$archname'";
( run in 0.261 second using v1.01-cache-2.11-cpan-cc502c75498 )