svn commit: r416167 - head/multimedia/ffmpeg0/files

Mathieu Arnold mat at FreeBSD.org
Mon May 30 18:10:39 UTC 2016


Author: mat
Date: Mon May 30 18:10:38 2016
New Revision: 416167
URL: https://svnweb.freebsd.org/changeset/ports/416167

Log:
  Fix build with Perl 5.25.1+.
  
  Unescaped left brace in regex is illegal in regex.
  
  With hat:	perl@
  Sponsored by:	Absolight

Added:
  head/multimedia/ffmpeg0/files/patch-doc_texi2pod.pl   (contents, props changed)

Added: head/multimedia/ffmpeg0/files/patch-doc_texi2pod.pl
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/ffmpeg0/files/patch-doc_texi2pod.pl	Mon May 30 18:10:38 2016	(r416167)
@@ -0,0 +1,11 @@
+--- doc/texi2pod.pl.orig	2015-03-12 00:05:23 UTC
++++ doc/texi2pod.pl
+@@ -348,7 +348,7 @@ sub postprocess
+     # @* is also impossible in .pod; we discard it and any newline that
+     # follows it.  Similarly, our macro @gol must be discarded.
+ 
+-    s/\@anchor{(?:[^\}]*)\}//g;
++    s/\@anchor\{(?:[^\}]*)\}//g;
+     s/\(?\@xref\{(?:[^\}]*)\}(?:[^.<]|(?:<[^<>]*>))*\.\)?//g;
+     s/\s+\(\@pxref\{(?:[^\}]*)\}\)//g;
+     s/;\s+\@pxref\{(?:[^\}]*)\}//g;


More information about the svn-ports-head mailing list