aboutsummaryrefslogtreecommitdiff
path: root/math/oleo
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2015-04-20 17:26:28 +0000
committerMathieu Arnold <mat@FreeBSD.org>2015-04-20 17:26:28 +0000
commit9c7215b58b6750e87801fb99d97bf4a0c52cb5e0 (patch)
treee15ba12d345c19d2b9431d9984332865440034e6 /math/oleo
parentaa1e1733541c120432b95a7aa7f489fd54e9d0c3 (diff)
downloadports-9c7215b58b6750e87801fb99d97bf4a0c52cb5e0.tar.gz
ports-9c7215b58b6750e87801fb99d97bf4a0c52cb5e0.zip
Fix build with Perl 5.21.1+
"defined(@array)" and "defined(%hash)" are now fatal errors These have been deprecated since v5.6.1 and have raised deprecation warnings since v5.16. With hat: perl@ Sponsored by: Absolight
Notes
Notes: svn path=/head/; revision=384372
Diffstat (limited to 'math/oleo')
-rw-r--r--math/oleo/files/patch-doc_texi2html.in23
1 files changed, 23 insertions, 0 deletions
diff --git a/math/oleo/files/patch-doc_texi2html.in b/math/oleo/files/patch-doc_texi2html.in
new file mode 100644
index 000000000000..55ae0733ed44
--- /dev/null
+++ b/math/oleo/files/patch-doc_texi2html.in
@@ -0,0 +1,23 @@
+--- doc/texi2html.in.orig 2015-04-20 17:22:33 UTC
++++ doc/texi2html.in
+@@ -3790,9 +3790,9 @@ sub update_sec_num {
+ my $ret;
+
+ $level--; # here we start at 0
+- if ($name =~ /^appendix/ || defined(@appendix_sec_num)) {
++ if ($name =~ /^appendix/ || @appendix_sec_num) {
+ # appendix style
+- if (defined(@appendix_sec_num)) {
++ if (@appendix_sec_num) {
+ &incr_sec_num($level, @appendix_sec_num);
+ } else {
+ @appendix_sec_num = ('A', 0, 0, 0);
+@@ -3800,7 +3800,7 @@ sub update_sec_num {
+ $ret = join('.', @appendix_sec_num[0..$level]);
+ } else {
+ # normal style
+- if (defined(@normal_sec_num))
++ if (@normal_sec_num)
+ {
+ &incr_sec_num($level, @normal_sec_num);
+ }