mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Lightweight and fast MJPEG-HTTP streamer (https://github.com/pikvm/ustreamer/tree/master#%C2%B5streamer) Signed-off-by: Kadambini Nema <kadambini.nema@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
22 lines
730 B
Plaintext
22 lines
730 B
Plaintext
config BR2_PACKAGE_USTREAMER
|
|
bool "ustreamer"
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_16 # V4L2_EVENT_SOURCE_CHANGE
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libbsd
|
|
depends on !BR2_STATIC_LIBS # libbsd
|
|
depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS # libbsd
|
|
depends on BR2_USE_WCHAR # libbsd
|
|
select BR2_PACKAGE_JPEG
|
|
select BR2_PACKAGE_LIBBSD
|
|
select BR2_PACKAGE_LIBEVENT
|
|
help
|
|
Lightweight and fast MJPEG-HTTP streamer
|
|
|
|
https://github.com/pikvm/ustreamer
|
|
|
|
comment "ustreamer needs a toolchain w/ headers >= 3.16, threads, dynamic library, wchar"
|
|
depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
|
|
depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_16 || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS || \
|
|
BR2_STATIC_LIBS || \
|
|
!BR2_USE_WCHAR
|