Commit 23467d5e authored by Simon Dawson's avatar Simon Dawson Committed by Peter Korsgaard
Browse files

lcdproc: add support for menus

parent f02d58cc
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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
+4 −0
Original line number Diff line number Diff line
@@ -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))