0f9c0bf3d5
Since things are no longer installed in $(HOST_DIR)/usr, the callers should also not refer to it. This is a mechanical change with git grep -l '$(HOST_DIR)/usr/bin' | xargs sed -i 's%$(HOST_DIR)/usr/bin%$(HOST_DIR)/bin%g' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
31 lines
994 B
Makefile
31 lines
994 B
Makefile
################################################################################
|
|
#
|
|
# libxcb
|
|
#
|
|
################################################################################
|
|
|
|
LIBXCB_VERSION = 1.12
|
|
LIBXCB_SOURCE = libxcb-$(LIBXCB_VERSION).tar.bz2
|
|
LIBXCB_SITE = http://xcb.freedesktop.org/dist
|
|
LIBXCB_LICENSE = MIT
|
|
LIBXCB_LICENSE_FILES = COPYING
|
|
|
|
LIBXCB_INSTALL_STAGING = YES
|
|
|
|
LIBXCB_DEPENDENCIES = \
|
|
host-libxslt libpthread-stubs xcb-proto xlib_libXdmcp xlib_libXau \
|
|
host-xcb-proto host-python host-pkgconf
|
|
HOST_LIBXCB_DEPENDENCIES = \
|
|
host-libxslt host-libpthread-stubs host-xcb-proto host-xlib_libXdmcp \
|
|
host-xlib_libXau host-python host-pkgconf
|
|
|
|
LIBXCB_CONF_OPTS = --with-doxygen=no
|
|
HOST_LIBXCB_CONF_OPTS = --with-doxygen=no
|
|
|
|
# libxcb is not python3 friendly, so force the python interpreter
|
|
HOST_LIBXCB_CONF_OPTS += ac_cv_path_PYTHON=$(HOST_DIR)/bin/python2
|
|
LIBXCB_CONF_OPTS += ac_cv_path_PYTHON=$(HOST_DIR)/bin/python2
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|