This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
5d870684cfe4b295fcfd857b3233a66dbf5001e5
[perl5.git]
/
cpan
/
DB_File
/
DB_File_BS
1
# NeXT needs /usr/lib/libposix.a to load along with DB_File.so
2
no strict 'vars';
3
if ( $dlsrc eq "dl_next.xs" ) {
4
@DynaLoader::dl_resolve_using = ( '/usr/lib/libposix.a' );
5
}
6
7
1;