ee363f5231
In order to get xkeyboard-config to build, it needs xkbcomp to be built on the host, i.e host-xapp_xkbcomp. In turn, xapp_xkbcomp needs xlib_libX11 and xlib_libxkbfile, which in turn need a few libraries. This commit adds all the relevant dependencies to build everything that is needed to get xkeyboard-config to build correctly. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
16 lines
653 B
Makefile
16 lines
653 B
Makefile
################################################################################
|
|
#
|
|
# xapp_xkbcomp -- compile XKB keyboard description
|
|
#
|
|
################################################################################
|
|
|
|
XAPP_XKBCOMP_VERSION = 1.1.1
|
|
XAPP_XKBCOMP_SOURCE = xkbcomp-$(XAPP_XKBCOMP_VERSION).tar.bz2
|
|
XAPP_XKBCOMP_SITE = http://xorg.freedesktop.org/releases/individual/app
|
|
XAPP_XKBCOMP_AUTORECONF = NO
|
|
XAPP_XKBCOMP_DEPENDENCIES = xlib_libX11 xlib_libxkbfile
|
|
HOST_XAPP_XKBCOMP_DEPENDENCIES = host-xlib_libX11 host-xlib_libxkbfile
|
|
|
|
$(eval $(call AUTOTARGETS,package/x11r7,xapp_xkbcomp))
|
|
$(eval $(call AUTOTARGETS,package/x11r7,xapp_xkbcomp,host))
|