lcdproc: add support for menus

Signed-off-by: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Simon Dawson 2012-10-04 02:11:39 +00:00 committed by Peter Korsgaard
parent f02d58ccff
commit 23467d5e2c
2 changed files with 10 additions and 0 deletions

View file

@ -12,3 +12,9 @@ config BR2_PACKAGE_LCDPROC_DRIVERS
depends on BR2_PACKAGE_LCDPROC
help
Specify a comma-separated list of lcdproc drivers to be built
config BR2_PACKAGE_LCDPROC_MENUS
bool "Menu support"
depends on BR2_PACKAGE_LCDPROC
help
Enable support for lcdproc menus

View file

@ -12,6 +12,10 @@ LCDPROC_MAKE = $(MAKE1)
LCDPROC_CONF_OPT = --enable-drivers=$(BR2_PACKAGE_LCDPROC_DRIVERS)
ifeq ($(BR2_PACKAGE_LCDPROC_MENUS),y)
LCDPROC_CONF_OPT += --enable-lcdproc-menus
endif
LCDPROC_DEPENDENCIES = ncurses
$(eval $(autotools-package))