blob: 204bba084727a09755b4a3bf2ba04625ba3d3be9 (
plain) (
blame)
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 libgdbm_compat.so but not this file,
# so linking may fail
foreach (split / /, $Config{libpth}) {
$self->{LIBS}->[0] .= ' -lgdbm_compat' if -e $_.'/libgdbm_compat.so';
}
|