1use 5.008006;
2use ExtUtils::MakeMaker;
3# See lib/ExtUtils/MakeMaker.pm for details of how to influence
4# the contents of the Makefile that is written.
5WriteMakefile(
6    NAME              => 'Filter::CBC',
7    VERSION_FROM      => 'lib/Filter/CBC.pm', # finds $VERSION
8    'PREREQ_PM' => {
9         'Filter::Util::Call' => '1.05',
10         'Crypt::CBC'         => '1.25',
11	 'Crypt::Rijndael'    => '0.04',
12     },
13    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
14      (ABSTRACT_FROM  => 'lib/Filter/CBC.pm', # retrieve abstract from module
15       AUTHOR         => 'Hendrik Van Belleghem <hendrik@apple.com>') : ()),
16);
17