948b92693d
Fixes http://autobuild.buildroot.net/results/98f/98f8dd2d1a9f8fac3024caf5aa0ca54fcf320389/
Commit 862e1221d
(Bump xcb-proto & libxcb version to 1.10) accidently
dropped the --disable-build-docs configure arguments for the host variant,
which in the best case slows down the build for no use, and on certain
hosts breaks the build as doxygen runs out of memory.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
24 lines
664 B
Makefile
24 lines
664 B
Makefile
################################################################################
|
|
#
|
|
# libxcb
|
|
#
|
|
################################################################################
|
|
|
|
LIBXCB_VERSION = 1.10
|
|
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 xlib_libpthread-stubs xcb-proto xlib_libXdmcp xlib_libXau \
|
|
host-xcb-proto host-python host-pkgconf
|
|
|
|
LIBXCB_CONF_OPT = --disable-build-docs
|
|
HOST_LIBXCB_CONF_OPT = --disable-build-docs
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|