diff options
author | joerg <joerg@pkgsrc.org> | 2015-06-17 20:44:25 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2015-06-17 20:44:25 +0000 |
commit | d3d083d34ed37a7516de54e05317f94932c31e78 (patch) | |
tree | caa618ccdf52b680c9064ab7bd194208ae4b4860 /devel/xulrunner192 | |
parent | 215d6d00ab217fe6989cfb0b0e5210a0ea078a0a (diff) | |
download | pkgsrc-d3d083d34ed37a7516de54e05317f94932c31e78.tar.gz |
Fix MOZILLA_VERSION computation for Perl 5.22.
Diffstat (limited to 'devel/xulrunner192')
-rw-r--r-- | devel/xulrunner192/distinfo | 3 | ||||
-rw-r--r-- | devel/xulrunner192/patches/patch-config_milestone.pl | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/devel/xulrunner192/distinfo b/devel/xulrunner192/distinfo index 7b67bb939d3..e7d6bfebd58 100644 --- a/devel/xulrunner192/distinfo +++ b/devel/xulrunner192/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.19 2014/05/15 21:16:16 joerg Exp $ +$NetBSD: distinfo,v 1.20 2015/06/17 20:44:25 joerg Exp $ SHA1 (firefox-3.6.28.source.tar.bz2) = adeaa9bdd367878c5b522766e681798178e31577 RMD160 (firefox-3.6.28.source.tar.bz2) = 87cfca8e3f1df30e06eccffbf994825904eeedbc @@ -35,6 +35,7 @@ SHA1 (patch-be) = 30d3285a10f62c7302b2c2809b1ab06bce0d3316 SHA1 (patch-bf) = 6295d27762eb91162c00362306acbd47eeda61ac SHA1 (patch-bg) = ab79e04b5ac1453157cfb57754613210c74c3b90 SHA1 (patch-build_autoconf_moznbytetype.m4) = c0299f856d074f220d29f6388d5b0d96ad4b3e51 +SHA1 (patch-config_milestone.pl) = 11252595ce322f6f3307ec6597ac4b9eb71bbf75 SHA1 (patch-content_svg_content_src_nsSVGFilters.cpp) = ab83b19616148054046f5b2befdd1c447e27d485 SHA1 (patch-content_svg_content_src_nsSVGFilters.h) = d6a7b2616a450a182e227d917203b7369dbf184e SHA1 (patch-dom_src_threads_nsDOMWorkerEvents.cpp) = 2e29c52ddefa76a7ce28307d6dc8c0a87d8cecc2 diff --git a/devel/xulrunner192/patches/patch-config_milestone.pl b/devel/xulrunner192/patches/patch-config_milestone.pl new file mode 100644 index 00000000000..b38a2146155 --- /dev/null +++ b/devel/xulrunner192/patches/patch-config_milestone.pl @@ -0,0 +1,13 @@ +$NetBSD: patch-config_milestone.pl,v 1.1 2015/06/17 20:44:25 joerg Exp $ + +--- config/milestone.pl.orig 2015-06-17 19:15:44.000000000 +0000 ++++ config/milestone.pl +@@ -85,7 +85,7 @@ $MILESTONE_FILE = "$TOPSRCDIR/config/mi + # + my $milestone = Moz::Milestone::getOfficialMilestone($MILESTONE_FILE); + +-if (defined(@TEMPLATE_FILE)) { ++if (@TEMPLATE_FILE) { + my $TFILE; + + foreach $TFILE (@TEMPLATE_FILE) { |