9cc56c24c9
Fixes: http://autobuild.buildroot.net/results/4ac/4ac625f4e888ba859a5867671664dc8d041ec9b9/ http://autobuild.buildroot.net/results/614/61450e889c3912e38e52759812fbb6ce03270788/ http://autobuild.buildroot.net/results/138/13800e3b52c9f6c84f85325710a59c7b3c04d0ee/ http://autobuild.buildroot.net/results/041/0410fb15e65561031453bedbc549ed82ce7bdc71/ And many more. Lcdproc forces shared libraries for the drivers, so mark it as unavailable for static only builds. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
30 lines
628 B
Plaintext
30 lines
628 B
Plaintext
comment "lcdproc needs a toolchain w/ dynamic library"
|
|
depends on BR2_STATIC_LIBS
|
|
|
|
config BR2_PACKAGE_LCDPROC
|
|
bool "lcdproc"
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on !BR2_STATIC_LIBS
|
|
select BR2_PACKAGE_FREETYPE
|
|
select BR2_PACKAGE_NCURSES
|
|
select BR2_PACKAGE_ZLIB
|
|
help
|
|
LCD display driver daemon and clients
|
|
|
|
http://lcdproc.org/
|
|
|
|
if BR2_PACKAGE_LCDPROC
|
|
|
|
config BR2_PACKAGE_LCDPROC_DRIVERS
|
|
string "List of drivers to build"
|
|
default "all"
|
|
help
|
|
Specify a comma-separated list of lcdproc drivers to be built
|
|
|
|
config BR2_PACKAGE_LCDPROC_MENUS
|
|
bool "Menu support"
|
|
help
|
|
Enable support for lcdproc menus
|
|
|
|
endif
|