We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When compiling v8js against PHP 8.4.0RC3, I got the below error:
/tmp/v8js/v8js_object_export.cc:678:9: error: ‘php_strtolower’ was not declared in this scope; did you mean ‘php_strtok_r’?
I found the below change in PHP:
php/php-src@85e6688
Also, I found this reference:
Imagick/imagick#690
I tried a quick test and changing v8js_object_export.cc to call zend_str_tolower instead of php_strtolower seems to work.
Thanks for your help.
The text was updated successfully, but these errors were encountered:
Fix wrong php to lower method
2025daf
Fixes phpv8#540 Relates Imagick/imagick#690
No branches or pull requests
When compiling v8js against PHP 8.4.0RC3, I got the below error:
I found the below change in PHP:
php/php-src@85e6688
Also, I found this reference:
Imagick/imagick#690
I tried a quick test and changing v8js_object_export.cc to call zend_str_tolower instead of php_strtolower seems to work.
Thanks for your help.
The text was updated successfully, but these errors were encountered: