summaryrefslogtreecommitdiff
path: root/ext/ODBM_File/hints/linux.pl
blob: 43b59df31ad3a2559f790df09de79e234c6b76de (plain)
1
2
3
4
5
6
7
8
# uses GDBM dbm compatibility feature - at least on SuSE 8.0
$self->{LIBS} = ['-lgdbm'];

# Debian/Ubuntu have /usr/lib/libgdbm_compat.so.3* but not this file,
# so linking may fail
if (-f '/usr/lib/libgdbm_compat.so') {
    $self->{LIBS}->[0] .= ' -lgdbm_compat';
}