diff options
author | Jelle Raaijmakers <jelle@gmta.nl> | 2021-07-29 15:01:59 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-29 15:58:38 +0200 |
commit | 6eb3bfb171d7ade8f06e559cef0a2bd968524c35 (patch) | |
tree | da73572be3d651da24ede7f7bb8bd4bc00ec8061 /Ports/php/package.sh | |
parent | 0d75637ffa08a1003671cc06f2cb5122da78726b (diff) | |
download | serenity-6eb3bfb171d7ade8f06e559cef0a2bd968524c35.zip |
Ports: Update PHP to version 8.0.8
Diffstat (limited to 'Ports/php/package.sh')
-rwxr-xr-x | Ports/php/package.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Ports/php/package.sh b/Ports/php/package.sh index 0dbb704a2a..db6e63933a 100755 --- a/Ports/php/package.sh +++ b/Ports/php/package.sh @@ -1,8 +1,8 @@ #!/usr/bin/env -S bash ../.port_include.sh port=php useconfigure="true" -version="8.0.6" -files="https://www.php.net/distributions/php-${version}.tar.xz php-${version}.tar.xz e9871d3b6c391fe9e89f86f6334852dcc10eeaaa8d5565beb8436e7f0cf30e20" +version="8.0.8" +files="https://www.php.net/distributions/php-${version}.tar.xz php-${version}.tar.xz dc1668d324232dec1d05175ec752dade92d29bb3004275118bc3f7fc7cbfbb1c" auth_type=sha256 depends="libiconv libxml2 openssl readline sqlite zlib" configopts=" @@ -15,7 +15,7 @@ configopts=" --without-pcre-jit " -export CFLAGS="-I${SERENITY_INSTALL_ROOT}/usr/local/include/libxml2/" +export CFLAGS="-I${SERENITY_INSTALL_ROOT}/usr/local/include/libxml2" export LIBS="-ldl" export LIBXML_CFLAGS="y" export LIBXML_LIBS="-lxml2" |