All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/php: add FFI support
@ 2020-07-28 16:31 Tom Marcuzzi
  2020-08-05 21:13 ` Thomas Petazzoni
  0 siblings, 1 reply; 2+ messages in thread
From: Tom Marcuzzi @ 2020-07-28 16:31 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Tom Marcuzzi <tom.marcuzzi@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 b0ab2c9ec7..f8beb25afb 100644
--- a/package/php/Config.ext
+++ b/package/php/Config.ext
@@ -427,4 +427,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 48af0f6fdc..1296c50c6d 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.25.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [Buildroot] [PATCH 1/1] package/php: add FFI support
  2020-07-28 16:31 [Buildroot] [PATCH 1/1] package/php: add FFI support Tom Marcuzzi
@ 2020-08-05 21:13 ` Thomas Petazzoni
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2020-08-05 21:13 UTC (permalink / raw)
  To: buildroot

Hello Tom,

On Tue, 28 Jul 2020 18:31:25 +0200
Tom Marcuzzi <tom.marcuzzi@orolia.com> wrote:

> Signed-off-by: Tom Marcuzzi <tom.marcuzzi@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 b0ab2c9ec7..f8beb25afb 100644
> --- a/package/php/Config.ext
> +++ b/package/php/Config.ext
> @@ -427,4 +427,10 @@ config BR2_PACKAGE_PHP_EXT_XSL
>  	help
>  	  XSL transformation support
>  
> +config BR2_PACKAGE_PHP_EXT_FFI
> +	bool "FFI"
> +	select BR2_PACKAGE_LIBFFI

You had forgotten to replicate the "depends on
BR2_TOOLCHAIN_HAS_THREADS" from BR2_PACKAGE_LIBFFI. So I did that and
applied. Thanks!

Best regards,

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-08-05 21:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-28 16:31 [Buildroot] [PATCH 1/1] package/php: add FFI support Tom Marcuzzi
2020-08-05 21:13 ` Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.