diff options
author | Andrej Zverev <az@FreeBSD.org> | 2014-02-08 15:46:50 +0000 |
---|---|---|
committer | Andrej Zverev <az@FreeBSD.org> | 2014-02-08 15:46:50 +0000 |
commit | 91fef7b3375081c41e49ecd0ac385934c476169e (patch) | |
tree | 8284af8d13a933a633815f32aafaa1a71d129cde /devel | |
parent | c1f507227acd9ff27d8e90121967bc0e438649b3 (diff) | |
download | freebsd-ports-91fef7b3375081c41e49ecd0ac385934c476169e.zip |
Use the ports version of ExtUtils::ParseXS for correct xs->c translation
under perl version < 5.16.
Reported by: Tim Bishop (perl@ maillist)
Diffstat (limited to 'devel')
-rw-r--r-- | devel/p5-Mouse/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/devel/p5-Mouse/Makefile b/devel/p5-Mouse/Makefile index 4cfce27f990a..958bc420999c 100644 --- a/devel/p5-Mouse/Makefile +++ b/devel/p5-Mouse/Makefile @@ -40,4 +40,8 @@ USE_PERL5= modbuild BUILD_DEPENDS+= p5-CPAN-Meta>=0:${PORTSDIR}/devel/p5-CPAN-Meta .endif +.if ${PERL_LEVEL} < 501600 +BUILD_DEPENDS+= p5-ExtUtils-ParseXS>=3.16:${PORTSDIR}/devel/p5-ExtUtils-ParseXS +.endif + .include <bsd.port.post.mk> |