This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
OS/390 seems to do length 0 udp reads, Nicholas says
[perl5.git] / ext / Storable / Makefile.PL
CommitLineData
862382c7 1# $Id: Makefile.PL,v 1.0.1.1 2001/01/03 09:38:39 ram Exp $
7a6a85bf
RG
2#
3# Copyright (c) 1995-2000, Raphael Manfredi
4#
9e21b3d0
JH
5# You may redistribute only under the same terms as Perl 5, as specified
6# in the README file that comes with the distribution.
7a6a85bf
RG
7#
8# $Log: Makefile.PL,v $
862382c7
JH
9# Revision 1.0.1.1 2001/01/03 09:38:39 ram
10# patch7: removed spurious 'clean' entry
11#
9e21b3d0
JH
12# Revision 1.0 2000/09/01 19:40:41 ram
13# Baseline for first official release.
7a6a85bf
RG
14#
15
16use ExtUtils::MakeMaker;
17use Config;
18
19WriteMakefile(
2834bd71 20 'NAME' => 'Storable',
7a6a85bf 21 'DISTNAME' => "Storable",
2834bd71 22 'MAN3PODS' => {},
7a6a85bf
RG
23 'VERSION_FROM' => 'Storable.pm',
24 'dist' => { SUFFIX => 'gz', COMPRESS => 'gzip -f' },
7a6a85bf
RG
25);
26