e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
595 B
Makefile
21 lines
595 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 $(autotools-package))
|
|
$(eval $(host-autotools-package))
|