Blame view

buildroot/buildroot-2016.08.1/package/mjpg-streamer/Config.in 708 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  config BR2_PACKAGE_MJPG_STREAMER
  	bool "mjpg-streamer"
  	depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 # linux/uvcvideo.h
  	depends on BR2_TOOLCHAIN_HAS_THREADS
  	depends on BR2_USE_MMU # fork()
  	depends on !BR2_STATIC_LIBS # plugins need dlopen()
  	select BR2_PACKAGE_JPEG
  	help
  	  MJPG-streamer takes JPGs from Linux-UVC compatible webcams,
  	  filesystem or other input plugins and streams them as
  	  M-JPEG via HTTP to webbrowsers, VLC and other software.
  
  	  http://mjpg-streamer.sourceforge.net
  
  comment "mjpg-streamer needs a toolchain w/ threads, headers >= 3.0, dynamic library"
  	depends on BR2_USE_MMU
  	depends on !BR2_TOOLCHAIN_HAS_THREADS || \
  		!BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 || BR2_STATIC_LIBS