1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00

- Tweaked source to allow use under Perl 5.6

Approved by:	tobez (implicit)
This commit is contained in:
Aaron Dalton 2006-05-25 21:51:54 +00:00
parent eb157204cc
commit 1290dd0694
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=163426
3 changed files with 19 additions and 3 deletions

View File

@ -23,8 +23,8 @@ PERL_CONFIGURE= yes
.include <bsd.port.pre.mk>
.if ${PERL_LEVEL} < 500800
IGNORE= currently requires Perl 5.8. Please install lang/perl5.8 and try again
.if ${PERL_LEVEL} < 500600
IGNORE= requires at least Perl 5.6. Please install lang/perl5.8 and try again
.endif
.include <bsd.port.post.mk>

View File

@ -1,5 +1,11 @@
--- Makefile.PL Thu Aug 11 19:31:58 2005
+++ Makefile.PL Thu May 25 15:13:58 2006
+++ Makefile.PL Thu May 25 15:42:44 2006
@@ -1,4 +1,4 @@
-use 5.008003;
+use 5.00600;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
@@ -8,9 +8,9 @@
PREREQ_PM => {}, # e.g., Module::Name => 1.1
ABSTRACT_FROM => 'lib/XML/WBXML.pm', # retrieve abstract from module

View File

@ -0,0 +1,10 @@
--- lib/XML/WBXML.pm Thu Aug 11 20:55:31 2005
+++ lib/XML/WBXML.pm Thu May 25 15:47:21 2006
@@ -1,6 +1,6 @@
package XML::WBXML;
-use 5.008003;
+use 5.00600;
use strict;
use warnings;