1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 05:07:34 +00:00

Ports: Enable PHP XML extensions

This commit is contained in:
Jelle Raaijmakers 2021-06-04 17:48:32 +02:00 committed by Andreas Kling
parent 93e605e415
commit 18a5ac1e66

View file

@ -4,20 +4,19 @@ useconfigure="true"
version="8.0.6" version="8.0.6"
files="https://www.php.net/distributions/php-${version}.tar.xz php-${version}.tar.xz e9871d3b6c391fe9e89f86f6334852dcc10eeaaa8d5565beb8436e7f0cf30e20" files="https://www.php.net/distributions/php-${version}.tar.xz php-${version}.tar.xz e9871d3b6c391fe9e89f86f6334852dcc10eeaaa8d5565beb8436e7f0cf30e20"
auth_type=sha256 auth_type=sha256
depends="libiconv sqlite" depends="libiconv libxml2 sqlite zlib"
configopts=" configopts="
--disable-dom
--disable-opcache --disable-opcache
--disable-phar --disable-phar
--disable-simplexml
--disable-xml
--disable-xmlreader
--disable-xmlwriter
--prefix=${SERENITY_INSTALL_ROOT}/usr/local --prefix=${SERENITY_INSTALL_ROOT}/usr/local
--with-iconv=${SERENITY_INSTALL_ROOT}/usr/local --with-iconv=${SERENITY_INSTALL_ROOT}/usr/local
--without-libxml
" "
export CFLAGS="-I${SERENITY_INSTALL_ROOT}/usr/local/include/libxml2/"
export LIBS="-ldl" export LIBS="-ldl"
export LIBXML_CFLAGS="y"
export LIBXML_LIBS="-lxml2"
export SQLITE_CFLAGS="y" export SQLITE_CFLAGS="y"
export SQLITE_LIBS="-lsqlite3 -lpthread" export SQLITE_LIBS="-lsqlite3 -lpthread"
export ZLIB_CFLAGS="y"
export ZLIB_LIBS="-lz"