[PECL-CVS] [pecl-search_engine-solr] master: Merge pull request #93 from bix0r/gh-72/remove-libxml-ext
[email protected] (Birgir Haraldsson via GitHub)
| Newsgroups | php.pecl.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Birgir Haraldsson (bix0r)
Committer: GitHub (web-flow)
Pusher: bix0r
Date: 2025-11-19T13:19:36+01:00
Commit: https://github.com/php/pecl-search_engine-solr/commit/39694a33e842ae7596b1a892d920b2100a4e5214
Raw diff: https://github.com/php/pecl-search_engine-solr/commit/39694a33e842ae7596b1a892d920b2100a4e5214.diff
Merge pull request #93 from bix0r/gh-72/remove-libxml-ext
Remove dependency on libxml extension
Changed paths:
M package.xml
M src/php_solr.c
Diff:
diff --git a/package.xml b/package.xml
index 2f2b1c3c..2ad76dbb 100644
--- a/package.xml
+++ b/package.xml
@@ -425,9 +425,6 @@ Fixes:
<pearinstaller>
<min>1.4.0</min>
</pearinstaller>
- <extension>
- <name>libxml</name>
- </extension>
</required>
</dependencies>
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
};