This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
In some Linux distributions the libndbm is broken
[perl5.git] / ext / NDBM_File / hints / linux.pl
1 # Some distributions have both gdbm and ndbm
2 # Prefer gdbm to avoid the broken ndbm in some distributions
3 # (no null key support)
4 # Jonathan Stowe <gellyfish@gellyfish.com>
5 use Config;
6 $self->{LIBS} = ['-lgdbm'] if $Config{libs} =~ /\b-lgdbm\b/;