xref: /openbsd-src/gnu/usr.bin/perl/ext/ODBM_File/hints/linux.pl (revision 898184e3e61f9129feb5978fad5a8c6865f00b92)
1# uses GDBM dbm compatibility feature - at least on SuSE 8.0
2$self->{LIBS} = ['-lgdbm'];
3
4# Debian/Ubuntu have libgdbm_compat.so but not this file,
5# so linking may fail
6foreach (split / /, $Config{libpth}) {
7    $self->{LIBS}->[0] .= ' -lgdbm_compat' if -e $_.'/libgdbm_compat.so';
8}
9