diff options
| author | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-07-31 23:10:23 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-07-31 23:12:14 +0200 |
| commit | 68161802eb53f0af58a274904aebfa115988a468 (patch) | |
| tree | e97c924a39243ff9a930b897e4f182d9be804a9d /package/kodi | |
| parent | 0386515cda6ec9797cf3dd4b6ece8f956fccf228 (diff) | |
| download | buildroot-68161802eb53f0af58a274904aebfa115988a468.tar.gz buildroot-68161802eb53f0af58a274904aebfa115988a468.zip | |
package: propagate pulseaudio dependencies correctly
The BR2_PACKAGE_PULSEAUDIO_HAS_ATOMIC dependency of
BR2_PACKAGE_PULSEAUDIO was not properly propagated to reverse
dependencies, causing the following kconfig warning:
warning: (BR2_PACKAGE_ESPEAK_AUDIO_BACKEND_PULSEAUDIO && BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_PULSE && BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_PULSE && BR2_PACKAGE_KODI_PULSEAUDIO && BR2_PACKAGE_MPD_PULSEAUDIO && BR2_PACKAGE_EFL_PULSEAUDIO) selects BR2_PACKAGE_PULSEAUDIO which has unmet direct dependencies (BR2_PACKAGE_PULSEAUDIO_HAS_ATOMIC && BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS && !BR2_STATIC_LIBS && BR2_USE_MMU)
This commit fixes that by propagating the dependency as it should have
been done.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'package/kodi')
| -rw-r--r-- | package/kodi/Config.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/kodi/Config.in b/package/kodi/Config.in index d96d546bf9..5f9c95a7a0 100644 --- a/package/kodi/Config.in +++ b/package/kodi/Config.in @@ -192,6 +192,7 @@ config BR2_PACKAGE_KODI_NONFREE config BR2_PACKAGE_KODI_PULSEAUDIO bool "pulseaudio" + depends on BR2_PACKAGE_PULSEAUDIO_HAS_ATOMIC # Pulseaudio support in kodi needs glib support in Pulseaudio, # see FindPulseAudio.cmake. Kodi meets all dependencies of # libglib2, so there is no need to propagate them here. |

