Commit c199fb72 authored by Thomas Petazzoni's avatar Thomas Petazzoni Committed by Peter Korsgaard
Browse files

libdvdnav: requires thread support in toolchain

libdvdnav requires thread support. The only package that depends on
libdvdnav is mplayer, and it is an optional dependency, only activated
when libdvdnav is enabled. So we don't have to push this thread
support dependency to any other package.

Fixes:

  http://autobuild.buildroot.org/results/54d6a737ae805ef1dbf77e5d11b4dd5366873ec0/build-end.log



Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 38cdf82a
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
config BR2_PACKAGE_LIBDVDNAV
	bool "libdvdnav"
	depends on BR2_LARGEFILE # libdvdread
	depends on BR2_TOOLCHAIN_HAS_THREADS
        select BR2_PACKAGE_LIBDVDREAD
	help
	  libdvdnav is a library that allows easy use of sophisticated
@@ -9,5 +10,5 @@ config BR2_PACKAGE_LIBDVDNAV

	  http://www.mplayerhq.hu

comment "libdvdnav requires a toolchain with LARGEFILE support"
	depends on !BR2_LARGEFILE
comment "libdvdnav requires a toolchain with LARGEFILE and thread support"
	depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS