Make the hint file work as well on 64-bit linuxes,
Rafael Garcia-Suarez [Mon, 17 Dec 2007 23:04:28 +0000 (23:04 +0000)]
noticed by Wolfgang Friebel

p4raw-id: //depot/perl@32632

ext/ODBM_File/hints/linux.pl

index ccccce0..f8ca492 100644 (file)
@@ -3,6 +3,6 @@ $self->{LIBS} = ['-lgdbm'];
 
 # Debian/Ubuntu have /usr/lib/libgdbm_compat.so.3* but not this file,
 # so linking may fail
-if (-e '/usr/lib/libgdbm_compat.so') {
+if (-e '/usr/lib/libgdbm_compat.so' or -e '/usr/lib64/libgdbm_compat.so') {
     $self->{LIBS}->[0] .= ' -lgdbm_compat';
 }