-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
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
[2.7] bpo-14353: Fix detection of bind_textdomain_codeset in libintl #13265
[2.7] bpo-14353: Fix detection of bind_textdomain_codeset in libintl #13265
Conversation
In Python-2.7, we were only searching for bind_textdomain_codeset in libc. We should have also checked for it in libintl. This change from Mel Flynn https://bugs.python.org/file24918/python27-configure.in.patch fixes that. Fixes: https://bugs.python.org/issue14353
2a7581d
to
01581db
Compare
\cc @benjaminp PR for the configure script detection of bind_textdomain_codeset. |
Okay, but |
Thanks. New commit with regenerated configure and pyconfig.h.in |
|
In Python-2.7, we were only searching for bind_textdomain_codeset in
libc. We should have also checked for it in libintl. This change from
Mel Flynn https://bugs.python.org/file24918/python27-configure.in.patch
fixes that.
This problem does not exist in the Python-3.x tree so this is not a backport but a fresh pull request against the 2.7 branch.
Fixes: https://bugs.python.org/issue14353
https://bugs.python.org/issue14353