Blame view

buildroot/buildroot-2016.08.1/package/fbv/Config.in 695 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
  config BR2_PACKAGE_FBV
  	bool "fbv"
  	help
  	  fbv is a very simple graphic file viewer for the framebuffer console,
  	  capable of displaying GIF, JPEG, PNG and BMP files using libungif,
  	  libjpeg and libpng.
  
  	  http://freshmeat.net/projects/fbv/
  
  if BR2_PACKAGE_FBV
  
  config BR2_PACKAGE_FBV_PNG
  	bool "PNG support"
  	default y
  	select BR2_PACKAGE_LIBPNG
  	help
  	  Enable support for PNG using libpng.
  
  config BR2_PACKAGE_FBV_JPEG
  	bool "JPEG support"
  	default y
  	select BR2_PACKAGE_JPEG
  	help
  	  Enable support for JPEG using IJG's libjpeg.
  
  config BR2_PACKAGE_FBV_GIF
  	bool "GIF support"
  	default y
  	select BR2_PACKAGE_GIFLIB
  	help
  	  Enable support for GIF using giflib.
  
  endif # BR2_PACKAGE_FBV