69e64c42b7
This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS,host))/$(eval $(host-generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS,host))/$(eval $(host-autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS,host))/$(eval $(host-cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
594 B
Makefile
21 lines
594 B
Makefile
################################################################################
|
|
#
|
|
# pixman
|
|
#
|
|
################################################################################
|
|
PIXMAN_VERSION = 0.25.2
|
|
PIXMAN_SITE = http://xorg.freedesktop.org/releases/individual/lib
|
|
PIXMAN_INSTALL_STAGING = YES
|
|
PIXMAN_DEPENDENCIES = host-pkg-config
|
|
# don't build gtk based demos
|
|
PIXMAN_CONF_OPT = --disable-gtk
|
|
|
|
# disable iwmmxt support for CPU's that don't have
|
|
# this feature
|
|
ifneq ($(BR2_iwmmxt),y)
|
|
PIXMAN_CONF_OPT += --disable-arm-iwmmxt
|
|
endif
|
|
|
|
$(eval $(call AUTOTARGETS))
|
|
$(eval $(host-autotools-package))
|