From df1e0b65a6e08b989bc1df0e7a3332e6041ec2c4 Mon Sep 17 00:00:00 2001 From: Birgir Haraldsson Date: Sun, 12 Oct 2025 14:43:51 +0200 Subject: [PATCH] Remove dependency on libxml extension Fixes #72 Because we don't rely on the libxml extension, we can safely remove its dependency. We still rely on the libxml library for all xml related things. --- package.xml | 3 --- src/php_solr.c | 1 - 2 files changed, 4 deletions(-) diff --git a/package.xml b/package.xml index 2f2b1c3c..2ad76dbb 100644 --- a/package.xml +++ b/package.xml @@ -425,9 +425,6 @@ Fixes: 1.4.0 - - libxml - diff --git a/src/php_solr.c b/src/php_solr.c index 5cf1deb7..6c5c9c9f 100644 --- a/src/php_solr.c +++ b/src/php_solr.c @@ -1136,7 +1136,6 @@ static zend_function_entry solr_utils_methods[] = { /* {{{ solr_module_deps */ static zend_module_dep solr_module_deps[] = { - ZEND_MOD_REQUIRED(PHP_LIBXML_EXTENSION_NAME) ZEND_MOD_REQUIRED(PHP_JSON_EXTENSION_NAME) ZEND_MOD_END };