Add support for `g' and `I' item types - pkgsrc-localpatches - leot's pkgsrc LOCALPATCHES
(HTM) hg clone https://bitbucket.org/iamleot/pkgsrc-localpatches
(DIR) Log
(DIR) Files
(DIR) Refs
---
(DIR) changeset c2f2a7bd70272e68db40f3195bf060845dc189f8
(DIR) parent e1e060698b07c4f0da6882d59b5f26eb5d9038d9
(HTM) Author: Leonardo Taccari <iamleot@gmail.com>
Date: Mon, 11 Nov 2019 13:32:09
Add support for `g' and `I' item types
Diffstat:
multimedia/ffmpeg4/patch-libavformat_gopher.c | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 deletions(-)
---
diff -r e1e060698b07 -r c2f2a7bd7027 multimedia/ffmpeg4/patch-libavformat_gopher.c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/multimedia/ffmpeg4/patch-libavformat_gopher.c Mon Nov 11 13:32:09 2019 +0100
@@ -0,0 +1,15 @@
+$NetBSD$
+
+Add support for `g' and `I' item types
+
+--- libavformat/gopher.c.orig 2018-11-01 18:34:27.000000000 +0000
++++ libavformat/gopher.c
+@@ -46,6 +46,8 @@ static int gopher_connect(URLContext *h,
+ switch (*++path) {
+ case '5':
+ case '9':
++ case 'g':
++ case 'I':
+ path = strchr(path, '/');
+ if (!path) return AVERROR(EINVAL);
+ break;