diff options
author | jlam <jlam@pkgsrc.org> | 2002-07-22 22:00:49 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2002-07-22 22:00:49 +0000 |
commit | 80743a4834a6dbfd437821f51e3212f3d5a64b9e (patch) | |
tree | 2826dc954fb4b30a416becc87cc0de58cf583109 /mk | |
parent | c0e85cf1bf322501a4ee30d828efde5ac9b8de90 (diff) | |
download | pkgsrc-80743a4834a6dbfd437821f51e3212f3d5a64b9e.tar.gz |
Adapt to using perl-5.8.0. Perl 5.8.0 removes the need for libperl as
DynaLoader.a is now an archive of PIC objects.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 5c734f1a35a..9cbfa7d0b10 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.1010 2002/07/22 02:33:55 jschauma Exp $ +# $NetBSD: bsd.pkg.mk,v 1.1011 2002/07/22 22:00:49 jlam Exp $ # # This file is in the public domain. # @@ -204,7 +204,12 @@ BUILD_DEFS+= KERBEROS PERL5_REQD?= 5.0 .if defined(USE_PERL5) +. if ${OPSYS} == "Darwin" +PERL5_REQD= 5.8.0 +DEPENDS+= perl>=${PERL5_REQD}:../../lang/perl58 +. else DEPENDS+= perl>=${PERL5_REQD}:../../lang/perl5 +. endif . if exists(${PERL5}) . if exists(${LOCALBASE}/share/mk/bsd.perl.mk) . include "${LOCALBASE}/share/mk/bsd.perl.mk" |