diff options
author | Anton Berezin <tobez@FreeBSD.org> | 2005-09-12 03:47:31 +0800 |
---|---|---|
committer | Anton Berezin <tobez@FreeBSD.org> | 2005-09-12 03:47:31 +0800 |
commit | 4eb99aa803d2bdd225ffd1eaffff36dadeda10a9 (patch) | |
tree | 64d085de00cdb27f45c8991419e932e858e7f3d6 /lang | |
parent | baffd9683273c7cdb6e67d0f9490a5104c9bd0fb (diff) | |
download | freebsd-ports-gnome-4eb99aa803d2bdd225ffd1eaffff36dadeda10a9.tar.gz freebsd-ports-gnome-4eb99aa803d2bdd225ffd1eaffff36dadeda10a9.tar.zst freebsd-ports-gnome-4eb99aa803d2bdd225ffd1eaffff36dadeda10a9.zip |
Fix build with older perls.
Noticed by: leeym
Diffstat (limited to 'lang')
-rw-r--r-- | lang/p5-Scalar-List-Utils/files/patch-Makefile.PL | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lang/p5-Scalar-List-Utils/files/patch-Makefile.PL b/lang/p5-Scalar-List-Utils/files/patch-Makefile.PL new file mode 100644 index 000000000000..62f5c14ff230 --- /dev/null +++ b/lang/p5-Scalar-List-Utils/files/patch-Makefile.PL @@ -0,0 +1,10 @@ +--- Makefile.PL.orig Sun Sep 11 21:43:16 2005 ++++ Makefile.PL Sun Sep 11 21:43:37 2005 +@@ -18,6 +18,7 @@ license ('perl'); + + makemaker_args ( XS => {}, C => []) unless $do_xs; + makemaker_args ( DEFINE => "-DPERL_EXT",); ++makemaker_args ( TYPEMAPS => ["mytypemap"]) unless $] >= 5.006_01; + + installdirs (qw(Scalar::Util List::Util)); + |