From patchwork Thu Jan 17 21:57:30 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [2/2] cairo: add missing dependency on xlib_libXext Date: Thu, 17 Jan 2013 11:57:30 -0000 From: Thomas Petazzoni X-Patchwork-Id: 213381 Message-Id: <1358459850-15495-2-git-send-email-thomas.petazzoni@free-electrons.com> To: buildroot@uclibc.org The X.org backend of Cairo now requires xlib_libXext. See http://permalink.gmane.org/gmane.comp.lib.cairo/23385. Fixes: http://autobuild.buildroot.org/results/795404665ec74a7ac929fdf8caf1397c9c54d80d/build-end.log Signed-off-by: Thomas Petazzoni --- package/cairo/cairo.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/cairo/cairo.mk b/package/cairo/cairo.mk index ab0615c..83c82c0 100644 --- a/package/cairo/cairo.mk +++ b/package/cairo/cairo.mk @@ -51,7 +51,7 @@ endif ifeq ($(BR2_PACKAGE_XORG7),y) CAIRO_CONF_OPT += --enable-xlib --enable-xcb --with-x - CAIRO_DEPENDENCIES += xlib_libX11 + CAIRO_DEPENDENCIES += xlib_libX11 xlib_libXext else CAIRO_CONF_OPT += --disable-xlib --disable-xcb --without-x endif