The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#
# $Id: Makefile.PL,v 1.2 2003/10/04 14:26:05 mshiltonj Exp $
#
#  Copyright (c) 2001, Raphael Manfredi
#
#  You may redistribute only under the terms of the Artistic License,
#  as specified in the README file that comes with the distribution.
#

use ExtUtils::MakeMaker;
eval q(use Carp::Datum::MakeMaker;);

WriteMakefile(
    'NAME'         => 'CGI::Test',
    'VERSION_FROM' => 'Test.pm',     # finds $VERSION
    'PREREQ_PM' => {'CGI'               => '0',
                    'Carp::Datum'       => '0',
                    'Digest::MD5'       => '0',
                    'Getargs::Long'     => '0.103',
                    'Log::Agent'        => '0.207',
                    'URI'               => '1.10',
                    'HTTP::Status'      => '0',
                    'HTML::TreeBuilder' => '0',
                    'File::Temp'        => '0',
                    'File::Spec'        => '0',
                    'Storable'          => '1.000',
    },
    'LIBS'   => [ '' ],    # e.g., '-lm'
    'DEFINE' => '',        # e.g., '-DHAVE_SOMETHING'
    'INC'    => '',        # e.g., '-I/usr/include/other'
    );