-
Notifications
You must be signed in to change notification settings - Fork 577
BBC 5.37.x breaks B::Hooks::Parser #21162
New issue
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
Comments
This breakage was reported upstream three weeks ago at RT 148418. The code in this module is apparently very sensitive to changes in the core distribution. Previous breakage in B::Hooks::Parser was reported (and resolved) in #16603 (2019), #15440 (2016), #12364 (2012). Am currently bisecting to try to identify the breaking commit. |
Bisection points to 7e2d91e.
@tonycoz, can you take a look? |
The change in prototype of the non-API scan_word() function caused B::Hooks::Parser to fail to build. Instead, rename scan_word() with the new prototype to scan_word2() and provide a scan_word() with the old signature. The scan_word2() entry may be removed once tick in symbol becomes an error. Fixes Perl#21162
The change in prototype of the non-API scan_word() function caused B::Hooks::Parser to fail to build. Instead, rename scan_word() with the new prototype to scan_word6() and provide a scan_word() with the old signature that forwards calls to the new function. scan_word6() may be removed once tick in symbol becomes an error Fixes Perl#21162
The change in prototype of the non-API scan_word() function caused B::Hooks::Parser to fail to build. Instead, rename scan_word() with the new prototype to scan_word6() and provide a scan_word() with the old signature that forwards calls to the new function. scan_word6() may be removed once tick in symbol becomes an error Fixes #21162
The change in prototype of the non-API scan_word() function caused B::Hooks::Parser to fail to build. Instead, rename scan_word() with the new prototype to scan_word6() and provide a scan_word() with the old signature that forwards calls to the new function. scan_word6() may be removed once tick in symbol becomes an error Fixes Perl#21162
E.g.
(from http://www.cpantesters.org/cpan/report/62c5a506-04c9-11ee-8cc4-947bc154cd3f)
Seems like it is using an internal API function, whose signature was changed recently.
The text was updated successfully, but these errors were encountered: