-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Add passwd/group APIs needed for nix-rust/nix#864 #934
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
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
5f9538d
Add passwd/group APIs needed for nix-rust/nix#864
ctrlcctrlv 74c554c
Fix build error on stable Rust
ctrlcctrlv f59c095
Remove "double blank line"
ctrlcctrlv 6228556
Fix issues raised by @gnzlbg
ctrlcctrlv 0f24a66
Fix long line
ctrlcctrlv 99869e0
Fix failure to document for Open/NetBSD
ctrlcctrlv 6d959f1
Fix BSD errors (hopefully)
ctrlcctrlv d058e0c
Refresh Cargo.lock
ctrlcctrlv File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
setgrent is not available in freebsd (or it looks like this is the case), you are going to have to put it in the folders of all bsd targets except for the freebsd one :/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
setgrent is available in FreeBSD. What gives you the impression it isn't?
https://github.com/freebsd/freebsd/blob/d5842c73935af7f7a7eeaeaec75ad8f3cf6cdf50/include/grp.h#L80
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed, this buildbot: https://travis-ci.org/rust-lang/libc/jobs/347737123#L1402
Says that the pointer types are incompatible. It looks like its signature was changed in: freebsd/freebsd-src@786c392
from
int setgrent()tovoid setgrent(). That commit was 2 years ago, but it might be that we are testing against a FreeBSD release that is older as the release where that commit was included.You might want to change the signature to
int setgrent()and see if that fixes the build. If so, please open an issue about updating the FreeBSD version. Ideally we would do that in a different PR, and then update everything that breaks (like makingsetgrentvoid setgrent()).Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If it turns out to be the case that changing the signature to
int setgrent()fixes this issue, what you can also do is change it back afterwards tovoid setgrent()and whitelist the function here: https://github.com/rust-lang/libc/blob/master/libc-test/build.rs#L606By adding a match arm like this:
This basically disables testing for the
setgrentfunction for FreeBSD.