summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-01-31 12:49:06 +0100
committerPacho Ramos <pacho@gentoo.org>2016-01-31 12:49:41 +0100
commit3d7644a89491fca1116cc0448d5da9e68cea68ca (patch)
treed7deb6c205077248034b6665c9fc2ffbd137c908 /app-cdr/brasero/files/brasero-3.12.1-libdvdcss.patch
parentsci-geosciences/geocode-glib: Version bump (diff)
downloadgentoo-3d7644a89491fca1116cc0448d5da9e68cea68ca.tar.gz
gentoo-3d7644a89491fca1116cc0448d5da9e68cea68ca.tar.bz2
gentoo-3d7644a89491fca1116cc0448d5da9e68cea68ca.zip
app-cdr/brasero: Fix detection of libdvdcss (#573422 by Michael Jones)
Package-Manager: portage-2.2.27
Diffstat (limited to 'app-cdr/brasero/files/brasero-3.12.1-libdvdcss.patch')
-rw-r--r--app-cdr/brasero/files/brasero-3.12.1-libdvdcss.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/app-cdr/brasero/files/brasero-3.12.1-libdvdcss.patch b/app-cdr/brasero/files/brasero-3.12.1-libdvdcss.patch
new file mode 100644
index 000000000000..86b009d71f79
--- /dev/null
+++ b/app-cdr/brasero/files/brasero-3.12.1-libdvdcss.patch
@@ -0,0 +1,18 @@
+The current version of libdvdcss has removed the dvdcss_interface_2 symbol so
+brasero incorrectly assumes it's the wrong version.
+
+https://bugzilla.redhat.com/show_bug.cgi?id=1193628
+
+diff -Naur brasero-3.12.1.orig/plugins/dvdcss/burn-dvdcss.c brasero-3.12.1/plugins/dvdcss/burn-dvdcss.c
+--- brasero-3.12.1.orig/plugins/dvdcss/burn-dvdcss.c 2015-11-12 09:48:53.782886516 -0600
++++ brasero-3.12.1/plugins/dvdcss/burn-dvdcss.c 2015-11-12 09:53:03.152656908 -0600
+@@ -95,9 +95,6 @@
+ if (!module)
+ goto error_doesnt_exist;
+
+- if (!g_module_symbol (module, "dvdcss_interface_2", &address))
+- goto error_version;
+-
+ if (!g_module_symbol (module, "dvdcss_open", &address))
+ goto error_version;
+ dvdcss_open = address;