summaryrefslogtreecommitdiff
path: root/lang/perl5/options.mk
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2014-01-13 09:59:16 +0000
committeradam <adam@pkgsrc.org>2014-01-13 09:59:16 +0000
commitc45ef8007b9ca551b9c05c0dfc34119be47b778e (patch)
tree97cf0610e610e5fc3cf5e2299fb18c6a69b1a928 /lang/perl5/options.mk
parente9a54338572ea9bf1d8b816365cd55b02b9c1e7f (diff)
downloadpkgsrc-c45ef8007b9ca551b9c05c0dfc34119be47b778e.tar.gz
Changes 5.18.2:
* B has been upgraded from version 1.42_01 to 1.42_02. * B::Concise has been upgraded from version 0.95 to 0.95_01. * English has been upgraded from version 1.06 to 1.06_01. This fixes an error about the performance of $`, $&, and c<$'>. * File::Glob has been upgraded from version 1.20 to 1.20_01. Bugs fixed: * Perl 5.18.1 introduced a regression along with a bugfix for lexical subs. Some B::SPECIAL results from B::CV::GV became undefs instead. This broke Devel::Cover among other libraries. * Perl 5.18.0 introduced a regression whereby [:^ascii:], if used in the same character class as other qualifiers, would fail to match characters in the Latin-1 block. * Perl 5.18.0 introduced a regression when using ->SUPER::method with AUTOLOAD by looking up AUTOLOAD from the current package, rather than the current package’s superclass. * Perl 5.18.0 introduced a regression whereby -bareword was no longer permitted under the strict and integer pragmata when used together. * Previously PerlIOBase_dup didn't check if pushing the new layer succeeded before (optionally) setting the utf8 flag. This could cause segfaults-by-nullpointer. * A buffer overflow with very long identifiers has been fixed. * A regression from 5.16 in the handling of padranges led to assertion failures if a keyword plugin declined to handle the second ‘my’, but only after creating a padop. * The construct $r=qr/.../; /$r/p is now handled properly, an issue which had been worsened by changes 5.18.0.
Diffstat (limited to 'lang/perl5/options.mk')
-rw-r--r--lang/perl5/options.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/lang/perl5/options.mk b/lang/perl5/options.mk
index feb3caa9495..c5a8edfa97b 100644
--- a/lang/perl5/options.mk
+++ b/lang/perl5/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.4 2013/07/15 09:24:57 ryoon Exp $
+# $NetBSD: options.mk,v 1.5 2014/01/13 09:59:16 adam Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.perl
PKG_OPTIONS_REQUIRED_GROUPS= perlbits
@@ -37,7 +37,8 @@ PKG_SUGGESTED_OPTIONS+= 64bitnone
PKG_SUGGESTED_OPTIONS+= 64bitauto
.endif
-.if ${OPSYS} == "Darwin" || ${OPSYS} == "SunOS"
+# Note: dtrace command on Darwin lacks required -G option
+.if ${OPSYS} == "SunOS"
PKG_SUGGESTED_OPTIONS+= dtrace
.endif