mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 16:01:54 -09:00
Removed patch 0001 and instead added new configure option --disable-multi-os-directory which was added upstream:877ea9bf9aRemoved patch 0003 due to various upstream fixes for mips soft-float support since its addition in 2016: https://github.com/libffi/libffi/commits/master/src/mips Renumbered remaining patch. Updated license hash due to copyright year bump:91739a1a91Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Reviewed-by: Adam Duskett <adam.duskett@amarulasolutions.com> Tested-by: Adam Duskett <adam.duskett@amarulasolutions.com> [yann.morin.1998@free.fr: fix check-package] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
24 lines
734 B
Makefile
24 lines
734 B
Makefile
################################################################################
|
|
#
|
|
# libffi
|
|
#
|
|
################################################################################
|
|
|
|
LIBFFI_VERSION = 3.4.6
|
|
LIBFFI_SITE = \
|
|
https://github.com/libffi/libffi/releases/download/v$(LIBFFI_VERSION)
|
|
LIBFFI_LICENSE = MIT
|
|
LIBFFI_LICENSE_FILES = LICENSE
|
|
LIBFFI_CPE_ID_VALID = YES
|
|
LIBFFI_INSTALL_STAGING = YES
|
|
# We're patching configure.ac
|
|
LIBFFI_AUTORECONF = YES
|
|
LIBFFI_CONF_OPTS = --disable-multi-os-directory
|
|
|
|
# The static exec trampolines is enabled by default since
|
|
# libffi 3.4.2. However it doesn't work with gobject-introspection.
|
|
LIBFFI_CONF_OPTS += --disable-exec-static-tramp
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|