require 5.004; use strict; my $NAME = 'DBIWrapper'; my $DISTNAME= "libdbiwrapper-perl"; # Check for non-standard modules that are used by this library. $| = 1; my $missing_modules = 0; print "Checking for DBI..........."; eval { require DBI; }; if ($@) { print " failed\n"; $missing_modules++; print < to find a CPAN site near you. EOT exit(1); } use ExtUtils::MakeMaker; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. WriteMakefile( 'NAME' => $NAME, 'VERSION_FROM' => "DBIWrapper.pm", 'DISTNAME' => $DISTNAME, 'PREREQ_PM' => { DBI => 0 }, 'AUTHOR' => 'James A. Pattie ', 'ABSTRACT' => 'DBI Wrapper Module.', );