8000 gh-89886: Properly quote Autoconf macro arguments by erlend-aasland · Pull Request #105062 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-89886: Properly quote Autoconf macro arguments #105062

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

Merged
merged 7 commits into from
May 30, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix dirfd
  • Loading branch information
erlend-aasland committed May 30, 2023
commit d4e92d6f03c20e45d30e2e8a5bbf0bc3358da3c6
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -4843,7 +4843,7 @@ AC_CHECK_DECL([dirfd],
[Define if you have the 'dirfd' function or macro.])],
[],
[@%:@include <sys/types.h>
@%:@include <dirent.h>])])
@%:@include <dirent.h>])

# For some functions, having a definition is not sufficient, since
# we want to take their address.
Expand Down
0