-
-
Notifications
You must be signed in to change notification settings - Fork 30.9k
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
configure is checking for ttyname
but code is using ttyname_r
#127614
Comments
12 tasks
glebm
added a commit
to glebm/macports-ports
that referenced
this issue
Dec 4, 2024
Upstream issue: python/cpython#127614
glebm
added a commit
to glebm/macports-ports
that referenced
this issue
Dec 4, 2024
Upstream issue python/cpython#127614
glebm
added a commit
to glebm/macports-ports
that referenced
this issue
Dec 4, 2024
Upstream issue python/cpython#127614
glebm
added a commit
to glebm/macports-ports
that referenced
this issue
Dec 5, 2024
Upstream issue python/cpython#127614
glebm
added a commit
to glebm/macports-ports
that referenced
this issue
Dec 6, 2024
Upstream issue python/cpython#127614
glebm
added a commit
to glebm/macports-ports
that referenced
this issue
Dec 6, 2024
Upstream issue python/cpython#127614
jmroot
pushed a commit
to macports/macports-ports
that referenced
this issue
Dec 7, 2024
Upstream issue python/cpython#127614
Mac OS X Tiger is not supported; I'm not sure it is worth it to add a fallback to |
erlend-aasland
added a commit
to erlend-aasland/cpython
that referenced
this issue
Jan 4, 2025
PR python#14868 replaced the ttyname() call with ttyname_r(), but the old check remained.
erlend-aasland
added a commit
that referenced
this issue
Jan 7, 2025
erlend-aasland
added a commit
to erlend-aasland/cpython
that referenced
this issue
Jan 7, 2025
…ython#128503) (cherry picked from commit e08b282) PR python#14868 replaced the ttyname() call with ttyname_r(), but the old check remained.
Thanks for the report, @glebm |
erlend-aasland
added a commit
that referenced
this issue
Jan 7, 2025
Thanks for the fix! |
srinivasreddy
pushed a commit
to srinivasreddy/cpython
that referenced
this issue
Jan 8, 2025
…#128503) PR python#14868 replaced the ttyname() call with ttyname_r(), but the old check remained.
erlend-aasland
added a commit
that referenced
this issue
Jan 11, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bug report
Bug description:
PR #14868 by @chibby0ne changed the code to use
ttyname_r
but theconfigure
script is checking forttyname
.There are some old systems, such as OSX Tiger, that don't have
ttyname_r
(at least not by default), so it'd be nice ifttyname_r
was checked for separately with fallback tottyname
.CPython versions tested on:
3.11, 3.12
Operating systems tested on:
macOS
Linked PRs
The text was updated successfully, but these errors were encountered: