diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-01-18 11:06:09 -0200 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-01-18 11:06:09 -0200 |
commit | 5f73d029b9e32ff36d0d44793ee072e7c6b4e888 (patch) | |
tree | 34e00f186550dc284cc23c21754cc53b97008fee /libre/xbmc/0006-CEC-fixed-don-t-use-CEC_CLIENT_VERSION_CURRENT-for-t.patch | |
parent | 7454853bb6eb43bda8344d1178b5db4a3e41fcb2 (diff) |
rename xbmc to kodi, remove xbmc-lts
Diffstat (limited to 'libre/xbmc/0006-CEC-fixed-don-t-use-CEC_CLIENT_VERSION_CURRENT-for-t.patch')
-rw-r--r-- | libre/xbmc/0006-CEC-fixed-don-t-use-CEC_CLIENT_VERSION_CURRENT-for-t.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/libre/xbmc/0006-CEC-fixed-don-t-use-CEC_CLIENT_VERSION_CURRENT-for-t.patch b/libre/xbmc/0006-CEC-fixed-don-t-use-CEC_CLIENT_VERSION_CURRENT-for-t.patch deleted file mode 100644 index cd533962a..000000000 --- a/libre/xbmc/0006-CEC-fixed-don-t-use-CEC_CLIENT_VERSION_CURRENT-for-t.patch +++ /dev/null @@ -1,29 +0,0 @@ -From fa01c108b60f74abb16992c1376bcca896093eac Mon Sep 17 00:00:00 2001 -From: Lars Op den Kamp <lars@opdenkamp.eu> -Date: Tue, 28 Oct 2014 16:08:00 +0100 -Subject: [PATCH 6/8] [CEC] fixed - don't use CEC_CLIENT_VERSION_CURRENT for - the client version, because it will lead to issues when XBMC is rebuilt after - a libCEC bump that changes something - ---- - xbmc/peripherals/devices/PeripheralCecAdapter.cpp | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/xbmc/peripherals/devices/PeripheralCecAdapter.cpp b/xbmc/peripherals/devices/PeripheralCecAdapter.cpp -index ad123d9..015daef 100644 ---- a/xbmc/peripherals/devices/PeripheralCecAdapter.cpp -+++ b/xbmc/peripherals/devices/PeripheralCecAdapter.cpp -@@ -1268,8 +1268,8 @@ void CPeripheralCecAdapter::SetConfigurationFromLibCEC(const CEC::libcec_configu - - void CPeripheralCecAdapter::SetConfigurationFromSettings(void) - { -- // use the same client version as libCEC version -- m_configuration.clientVersion = CEC_CLIENT_VERSION_CURRENT; -+ // client version matches the version of libCEC that we originally used the API from -+ m_configuration.clientVersion = CEC_CLIENT_VERSION_2_2_0; - - // device name 'XBMC' - snprintf(m_configuration.strDeviceName, 13, "%s", GetSettingString("device_name").c_str()); --- -2.1.2 - |