[Buildroot] [PATCH] package/php: add FFI support

Tom Marcuzzi tom.marcuzzi at orolia.com
Thu Apr 30 08:07:36 UTC 2020


On 4/29/20 11:05 PM, Thomas Petazzoni wrote:
> Hello Tom,
> 
> On Tue, 28 Apr 2020 10:56:01 +0200
> Tom Marcuzzi <tom.marcuzzi at orolia.com> wrote:
> 
>> ---
>>   package/php/Config.ext | 6 ++++++
>>   package/php/php.mk     | 5 +++++
>>   2 files changed, 11 insertions(+)
> 
> Thanks, this looks good. Could you just resend with your Signed-off-by
> added to the commit log ?

Signed-off-by: Tom Marcuzzi <tom.marcuzzi at orolia.com>
---
  package/php/Config.ext | 6 ++++++
  package/php/php.mk     | 5 +++++
  2 files changed, 11 insertions(+)

diff --git a/package/php/Config.ext b/package/php/Config.ext
index 66ee935cf0..fc28a523e1 100644
--- a/package/php/Config.ext
+++ b/package/php/Config.ext
@@ -425,4 +425,10 @@ config BR2_PACKAGE_PHP_EXT_XSL
  	help
  	  XSL transformation support

+config BR2_PACKAGE_PHP_EXT_FFI
+	bool "FFI"
+	select BR2_PACKAGE_LIBFFI
+	help
+	  Foreign Function Interface support
+
  endmenu
diff --git a/package/php/php.mk b/package/php/php.mk
index 4d2f1b8f63..fd78b36b51 100644
--- a/package/php/php.mk
+++ b/package/php/php.mk
@@ -333,6 +333,11 @@ PHP_CONF_OPTS += \
  PHP_DEPENDENCIES += jpeg libpng freetype zlib
  endif

+ifeq ($(BR2_PACKAGE_PHP_EXT_FFI),y)
+PHP_CONF_OPTS += --with-ffi
+PHP_DEPENDENCIES += libffi
+endif
+
  ifeq ($(BR2_PACKAGE_PHP_SAPI_FPM),y)
  define PHP_INSTALL_INIT_SYSV
  	$(INSTALL) -D -m 0755 $(@D)/sapi/fpm/init.d.php-fpm \
--
2.17.1






More information about the buildroot mailing list