From 7e6722abe88a7c68e2d1a7a70c31855c78342214 Mon Sep 17 00:00:00 2001 From: Ostap Brehin Date: Fri, 3 Nov 2023 11:02:06 +0000 Subject: [PATCH] Ports/php: Enable curl --- Ports/php/package.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Ports/php/package.sh b/Ports/php/package.sh index 5849e8b4785..b901035711f 100755 --- a/Ports/php/package.sh +++ b/Ports/php/package.sh @@ -6,6 +6,7 @@ files=( "https://www.php.net/distributions/php-${version}.tar.xz#561dc4acd5386e47f25be76f2c8df6ae854756469159248313bcf276e282fbb3" ) depends=( + 'curl' 'libiconv' 'libxml2' 'openssl' @@ -18,6 +19,7 @@ configopts=( '--disable-opcache' '--enable-fpm' "--prefix=${SERENITY_INSTALL_ROOT}/usr/local" + '--with-curl' "--with-iconv=${SERENITY_INSTALL_ROOT}/usr/local" '--with-openssl' "--with-readline=${SERENITY_INSTALL_ROOT}/usr/local"