I have tried to make changes to the port textproc/php84-xsl, but must be missing something?!
I don't have a patch, but I'm guessing I should create one myself, with the code change, right?
I have tried the following:
But that only creates a lot of empty files and directories?!
The change I want to do is the following:
github.com
Thanks,
I don't have a patch, but I'm guessing I should create one myself, with the code change, right?
I have tried the following:
Code:
1. cd /usr/ports/textproc/php84-xsl
2. make extract
3. cd work/php-8.4.19/ext/xsl/
4. cp php_xsl.c php_xsl.orig
5. mcedit php_xsl.c and make desired the changes (see link below)
6. cd ../../../ && make makepatch
But that only creates a lot of empty files and directories?!
The change I want to do is the following:
Fix GH-21600: Remove xsltCleanupGlobals call in ext/xsl MSHUTDOWN. by devnexen · Pull Request #21610 · php/php-src
The call to xsltCleanupGlobals() during module shutdown can cause a segfault in xmlHashFree() when freeing libxslt internal hash tables. This is the same class of shutdown cleanup issue that led to...
Thanks,