From: Rafael Garcia-Suarez Date: Wed, 4 Jul 2007 08:20:47 +0000 (+0000) Subject: Don't require to have at least DB_File or *DBM_File X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=04d1c4156e381ac787d2439f25f8152211f495f8;p=p5sagit%2Fp5-mst-13.2.git Don't require to have at least DB_File or *DBM_File p4raw-id: //depot/perl@31528 --- diff --git a/t/lib/commonsense.t b/t/lib/commonsense.t index 6e31307..27fd302 100644 --- a/t/lib/commonsense.t +++ b/t/lib/commonsense.t @@ -3,10 +3,6 @@ chdir 't' if -d 't'; @INC = '../lib'; require Config; import Config; -if (($Config{'extensions'} !~ /\b(DB|[A-Z]DBM)_File\b/) ){ - print "Bail out! Perl configured without DB_File or [A-Z]DBM_File\n"; - exit 0; -} if (($Config{'extensions'} !~ /\bFcntl\b/) ){ print "Bail out! Perl configured without Fcntl module\n"; exit 0;