lcdproc: fix autobuilder failures

The lcdproc version bump to 0.5.6 has resulted in autobuilder failures such as
the following.

  http://autobuild.buildroot.org/results/9967bc20a6094e836c4c18ff2cd30edef143bb8e/build-end.log

The 0.5.6 release added a new glcd driver, which requires the freetype and zlib
libraries. This patch makes the lcdproc package depend on freetype and zlib.

Signed-off-by: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Simon Dawson 2012-11-11 23:18:12 +00:00 committed by Peter Korsgaard
parent b6584017b4
commit ffdb08d221
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,8 @@
config BR2_PACKAGE_LCDPROC
bool "lcdproc"
select BR2_PACKAGE_FREETYPE
select BR2_PACKAGE_NCURSES
select BR2_PACKAGE_ZLIB
help
LCD display driver daemon and clients

View File

@ -16,6 +16,6 @@ ifeq ($(BR2_PACKAGE_LCDPROC_MENUS),y)
LCDPROC_CONF_OPT += --enable-lcdproc-menus
endif
LCDPROC_DEPENDENCIES = ncurses
LCDPROC_DEPENDENCIES = freetype ncurses zlib
$(eval $(autotools-package))