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

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: default avatarSimon Dawson <spdawson@gmail.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent b6584017
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
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

+1 −1
Original line number Diff line number Diff line
@@ -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))