aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvd <vd@FreeBSD.org>2013-10-24 22:23:53 +0800
committervd <vd@FreeBSD.org>2013-10-24 22:23:53 +0800
commitdf5b6cca77ae31cbe1def220e860ab66b2ad2055 (patch)
tree47713cc8fcec1661a0fce798d72a78af21bc2294
parent916c40a6dfbf5d42b654a73776959b0aabecb1ed (diff)
downloadfreebsd-ports-gnome-df5b6cca77ae31cbe1def220e860ab66b2ad2055.tar.gz
freebsd-ports-gnome-df5b6cca77ae31cbe1def220e860ab66b2ad2055.tar.zst
freebsd-ports-gnome-df5b6cca77ae31cbe1def220e860ab66b2ad2055.zip
Fix compilation of ftp/wget when perl 5.18 is installed.
Patch from upstream repo suggested by Anton Yuzhaninov <citrin@citrin.ru>. PR: ports/182159 Submitted by: Jeremy Chadwick <jdc@koitsu.org>
-rw-r--r--ftp/wget/files/patch-doc__texi2pod.pl11
1 files changed, 11 insertions, 0 deletions
diff --git a/ftp/wget/files/patch-doc__texi2pod.pl b/ftp/wget/files/patch-doc__texi2pod.pl
new file mode 100644
index 000000000000..45a8873a9e72
--- /dev/null
+++ b/ftp/wget/files/patch-doc__texi2pod.pl
@@ -0,0 +1,11 @@
+--- doc/texi2pod.pl.orig 2013-10-24 16:59:55.000000000 +0300
++++ doc/texi2pod.pl 2013-10-24 17:01:23.000000000 +0300
+@@ -291,7 +291,7 @@
+ if (defined $1) {
+ my $thing = $1;
+ if ($ic =~ /\@asis/) {
+- $_ = "\n=item $thing\n";
++ $_ = "\n=item C<$thing>\n";
+ } else {
+ # Entity escapes prevent munging by the <> processing below.
+ $_ = "\n=item $ic\&LT;$thing\&GT;\n";