1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

Update to 2.2.1 - changelog is here:

https://www.videolan.org/developers/vlc-branch/NEWS
This commit is contained in:
Juergen Lock 2015-05-02 14:24:12 +00:00
parent 293d6127c6
commit 933179202b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=385179
3 changed files with 3 additions and 21 deletions

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= vlc
DISTVERSION= 2.2.0
PORTREVISION= 4
DISTVERSION= 2.2.1
PORTEPOCH= 4
CATEGORIES= multimedia audio ipv6 net www
MASTER_SITES= http://download.videolan.org/pub/videolan/${PORTNAME}/${DISTVERSION:S/a$//}/ \

View File

@ -1,2 +1,2 @@
SHA256 (vlc-2.2.0.tar.xz) = 5e0a27e248c47da723a696420aca3a4dd15cc3ed8cc81618d3f1dc8661b25517
SIZE (vlc-2.2.0.tar.xz) = 20861760
SHA256 (vlc-2.2.1.tar.xz) = 543d9d7e378ec0fa1ee2e7f7f5acf8c456c7d0ecc32037171523197ef3cf1fcb
SIZE (vlc-2.2.1.tar.xz) = 20940288

View File

@ -1,17 +0,0 @@
--- modules/access/dtv/linux.c.orig
+++ modules/access/dtv/linux.c
@@ -902,8 +902,12 @@ int dvb_set_dvbs2 (dvb_device_t *d, uint
return dvb_set_props (d, 9, DTV_CLEAR, 0, DTV_DELIVERY_SYSTEM, SYS_DVBS2,
DTV_FREQUENCY, freq, DTV_MODULATION, mod,
DTV_SYMBOL_RATE, srate, DTV_INNER_FEC, fec,
- DTV_PILOT, pilot, DTV_ROLLOFF, rolloff,
- DTV_STREAM_ID, (uint32_t)sid);
+ DTV_PILOT, pilot, DTV_ROLLOFF, rolloff
+/* XXX what to do with old dvb headers here? */
+#ifdef DTV_STREAM_ID
+ , DTV_STREAM_ID, (uint32_t)sid
+#endif
+ );
}