From ea0cd3d7c3fbe227cbcb614fa852d9039763a816 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Fri, 27 Feb 2015 14:17:23 +0100 Subject: [PATCH] build: Remove pkg-config for xcb-xprint as the pc file is now longer shipped. xcb no longer ships the xcp-print.pc file and thus pkg-config is not able to detect it. Some distros might patch over it as the source files seem still to be shipped but we cannot rely on this. http://lists.freedesktop.org/archives/xcb/2013-November/008907.html As the above commit mentions the xprint support was actually removed from the Xorg server in 2008 (1.11 release) which means none of our code actually has any server side it can talk to for some years now. :) Our xcb-xprint code is actually ifdef'ed already so we might want to remove it alltogether. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 97b8828a61..f299d378ef 100644 --- a/configure.ac +++ b/configure.ac @@ -3530,7 +3530,7 @@ fi if test "${want_x11_xcb}" = "yes"; then dnl note: added pixman-1 as ecore_xcb_region uses that EFL_DEPEND_PKG([ECORE_X], [ECORE_X_XCB], - [x11-xcb xcb xcb-shm xcb-event xcb-icccm >= 0.3.8 xcb-util >= 0.3.8 xcb-image xcb-keysyms >= 0.3.8 xcb-composite xcb-present xcb-damage xcb-dpms xcb-randr xcb-render xcb-screensaver xcb-shape xcb-sync xcb-xfixes xcb-xinerama xcb-xprint xcb-xtest xcb-renderutil pixman-1]) + [x11-xcb xcb xcb-shm xcb-event xcb-icccm >= 0.3.8 xcb-util >= 0.3.8 xcb-image xcb-keysyms >= 0.3.8 xcb-composite xcb-present xcb-damage xcb-dpms xcb-randr xcb-render xcb-screensaver xcb-shape xcb-sync xcb-xfixes xcb-xinerama xcb-xtest xcb-renderutil pixman-1]) dnl TODO: remove these ifdefs from code! AC_DEFINE([ECORE_XCB_COMPOSITE], [1], [Build support for XCB composite])