From 82508681b3cb23ae50f060b519e41b295cdb4b8c Mon Sep 17 00:00:00 2001 From: Nicolas Carrier Date: Thu, 19 Jan 2023 14:28:55 +0100 Subject: [PATCH] package/php/php: add a host variant Having a working PHP with the correct version, is mandatory for executing some PHP tools, such as composer, when building packages. Signed-off-by: Nicolas Carrier Signed-off-by: Thomas Petazzoni --- package/php/php.mk | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/package/php/php.mk b/package/php/php.mk index 68aeceb33e..691436926b 100644 --- a/package/php/php.mk +++ b/package/php/php.mk @@ -14,6 +14,7 @@ PHP_DEPENDENCIES = host-pkgconf pcre2 PHP_LICENSE = PHP-3.01 PHP_LICENSE_FILES = LICENSE PHP_CPE_ID_VENDOR = php + PHP_CONF_OPTS = \ --mandir=/usr/share/man \ --infodir=/usr/share/info \ @@ -354,4 +355,24 @@ PHP_POST_INSTALL_TARGET_HOOKS += PHP_INSTALL_FIXUP PHP_CONF_ENV += CFLAGS="$(PHP_CFLAGS)" CXXFLAGS="$(PHP_CXXFLAGS)" +HOST_PHP_CONF_OPTS = \ + --disable-all \ + --without-pear \ + --with-config-file-path=$(HOST_DIR)/etc \ + --disable-phpdbg \ + --with-external-pcre \ + --enable-phar \ + --enable-json \ + --enable-filter \ + --enable-mbstring \ + --enable-tokenizer \ + --with-openssl=$(HOST_DIR) + +HOST_PHP_DEPENDENCIES = \ + host-oniguruma \ + host-openssl \ + host-pcre2 \ + host-pkgconf + $(eval $(autotools-package)) +$(eval $(host-autotools-package))