diff mbox

[03/36] xorg: xapp_xdpyinfo also depends on xlib_libXinerama & xlib_libXcomposite

Message ID BLU0-SMTP384462B279D0C0F5F6433E9D9B50@phx.gbl
State Rejected
Headers show

Commit Message

Bernd Kuhls Jan. 4, 2014, 1:38 p.m. UTC
snippet from configure:

checking for DPY_XCOMPOSITE... yes
checking for X11/extensions/Xcomposite.h... yes
checking for DPY_XINERAMA... yes
checking for X11/extensions/Xinerama.h... yes

Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
---
 package/x11r7/xapp_xdpyinfo/xapp_xdpyinfo.mk |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Peter Korsgaard Jan. 5, 2014, 8:54 p.m. UTC | #1
>>>>> "Bernd" == Bernd Kuhls <berndkuhls@hotmail.com> writes:

 > snippet from configure:
 > checking for DPY_XCOMPOSITE... yes
 > checking for X11/extensions/Xcomposite.h... yes
 > checking for DPY_XINERAMA... yes
 > checking for X11/extensions/Xinerama.h... yes

Yes, but they are optional so we shouldn't force them (and if they were
required, there should be matching 'select' lines in Config.in).

I've committed a patch to clean up the list of dependencies and add
optional support for xcomposite / xinerama.
diff mbox

Patch

diff --git a/package/x11r7/xapp_xdpyinfo/xapp_xdpyinfo.mk b/package/x11r7/xapp_xdpyinfo/xapp_xdpyinfo.mk
index 2143988..c83bdbb 100644
--- a/package/x11r7/xapp_xdpyinfo/xapp_xdpyinfo.mk
+++ b/package/x11r7/xapp_xdpyinfo/xapp_xdpyinfo.mk
@@ -9,6 +9,6 @@  XAPP_XDPYINFO_SOURCE = xdpyinfo-$(XAPP_XDPYINFO_VERSION).tar.bz2
 XAPP_XDPYINFO_SITE = http://xorg.freedesktop.org/releases/individual/app
 XAPP_XDPYINFO_LICENSE = MIT
 XAPP_XDPYINFO_LICENSE_FILES = COPYING
-XAPP_XDPYINFO_DEPENDENCIES = xlib_libX11 xlib_libXext xlib_libXi xlib_libXrender xlib_libXtst xlib_libXxf86dga xlib_libXxf86vm xproto_inputproto xproto_kbproto xproto_renderproto xproto_xf86dgaproto xproto_xf86vidmodeproto xlib_libdmx
+XAPP_XDPYINFO_DEPENDENCIES = xlib_libX11 xlib_libXext xlib_libXi xlib_libXrender xlib_libXtst xlib_libXxf86dga xlib_libXxf86vm xproto_inputproto xproto_kbproto xproto_renderproto xproto_xf86dgaproto xproto_xf86vidmodeproto xlib_libdmx xlib_libXinerama xlib_libXcomposite
 
 $(eval $(autotools-package))