Cegui doesn't allow to have enabled both opengl libraries so disable
libepoxy when both are enabled.
Fixes:
- http://autobuild.buildroot.net/results/
2881bbcc2dcfcaa5ed663817ff39f7574430ba5a/build-end.log
Signed-off-by: Bartosz Bilas <b.bilas@grinn-global.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
$(if $(BR2_PACKAGE_LIBGLEW),libglew) \
$(if $(BR2_PACKAGE_LIBICONV),libiconv)
-ifeq ($(BR2_PACKAGE_LIBEPOXY),y)
+# libepoxy support cannot be enabled together with libglew
+ifeq ($(BR2_PACKAGE_LIBEPOXY):$(BR2_PACKAGE_LIBGLEW),y:)
CEGUI_DEPENDENCIES += libepoxy
CEGUI_CONF_OPTS += -DCEGUI_USE_EPOXY=ON
else