brasero-3.12.1-libdvdcss.patch 720 B

12345678910111213141516171819
  1. The current version of libdvdcss has removed the dvdcss_interface_2 symbol so
  2. brasero incorrectly assumes it's the wrong version.
  3. https://bugzilla.redhat.com/show_bug.cgi?id=1193628
  4. diff -Naur brasero-3.12.1.orig/plugins/dvdcss/burn-dvdcss.c brasero-3.12.1/plugins/dvdcss/burn-dvdcss.c
  5. --- brasero-3.12.1.orig/plugins/dvdcss/burn-dvdcss.c 2015-11-12 09:48:53.782886516 -0600
  6. +++ brasero-3.12.1/plugins/dvdcss/burn-dvdcss.c 2015-11-12 09:53:03.152656908 -0600
  7. @@ -95,9 +95,6 @@
  8. if (!module)
  9. goto error_doesnt_exist;
  10. - if (!g_module_symbol (module, "dvdcss_interface_2", &address))
  11. - goto error_version;
  12. -
  13. if (!g_module_symbol (module, "dvdcss_open", &address))
  14. goto error_version;
  15. dvdcss_open = address;