diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2016-03-18 17:55:22 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-03-20 17:59:49 +0100 |
commit | c7110480e02df1c91313028f1b5ae0e8c059b46c (patch) | |
tree | e1742e1add28c4bd7fa3742b0d7d0c405162fb4c | |
parent | 472434323663d31e2aa6162b6907f6e6828669a8 (diff) | |
download | buildroot-c7110480e02df1c91313028f1b5ae0e8c059b46c.tar.gz buildroot-c7110480e02df1c91313028f1b5ae0e8c059b46c.zip |
xdriver_xf86-video-ati: needs dri3proto for glamor
We need to match xserver here, since we need glamor support there in
order to enable it here, hence need to match the dependencies.
For xserver it needs dri3proto+libepoxy, however if only libepoxy is
present then glamor would be disabled for the server but enabled for the
driver, leading to build failure.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/x11r7/xdriver_xf86-video-ati/xdriver_xf86-video-ati.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/x11r7/xdriver_xf86-video-ati/xdriver_xf86-video-ati.mk b/package/x11r7/xdriver_xf86-video-ati/xdriver_xf86-video-ati.mk index 3dd3d07a24..09af05a5fa 100644 --- a/package/x11r7/xdriver_xf86-video-ati/xdriver_xf86-video-ati.mk +++ b/package/x11r7/xdriver_xf86-video-ati/xdriver_xf86-video-ati.mk @@ -22,7 +22,7 @@ XDRIVER_XF86_VIDEO_ATI_DEPENDENCIES = \ xproto_xproto \ xserver_xorg-server -ifeq ($(BR2_PACKAGE_LIBEPOXY),y) +ifeq ($(BR2_PACKAGE_XPROTO_DRI3PROTO)$(BR2_PACKAGE_LIBEPOXY),yy) XDRIVER_XF86_VIDEO_ATI_CONF_OPTS = --enable-glamor else XDRIVER_XF86_VIDEO_ATI_CONF_OPTS = --disable-glamor |