[l2h] [patch] Use DB, not DB_File
Tim Waugh
twaugh@redhat.com
Wed, 16 Jan 2002 13:17:59 +0000
Here is a tiny patch to get latex2html's config/config.pl to use DB
rather than the older DB_File (I think it it going away soon).
Tim.
*/
--- latex2html-2K.1beta/config/config.pl.DB Wed Jan 16 13:08:34 2002
+++ latex2html-2K.1beta/config/config.pl Wed Jan 16 13:09:14 2002
@@ -587,7 +587,7 @@
&checking('if perl supports some dbm');
-use DB_File;
+use DB;
my %array;
unless(eval {dbmopen(%array,'DBMtest',0755)}) {
my $err = $@ || 'dbmopen failed';