libffi.mk 684 B

12345678910111213141516171819202122
  1. ################################################################################
  2. #
  3. # libffi
  4. #
  5. ################################################################################
  6. LIBFFI_VERSION = 3.4.4
  7. LIBFFI_SITE = \
  8. https://github.com/libffi/libffi/releases/download/v$(LIBFFI_VERSION)
  9. LIBFFI_LICENSE = MIT
  10. LIBFFI_LICENSE_FILES = LICENSE
  11. LIBFFI_CPE_ID_VALID = YES
  12. LIBFFI_INSTALL_STAGING = YES
  13. # We're patching Makefile.am
  14. LIBFFI_AUTORECONF = YES
  15. # The static exec trampolines is enabled by default since
  16. # libffi 3.4.2. However it doesn't work with gobject-introspection.
  17. LIBFFI_CONF_OPTS = --disable-exec-static-tramp
  18. $(eval $(autotools-package))
  19. $(eval $(host-autotools-package))