-
Notifications
You must be signed in to change notification settings - Fork 673
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
Remove IFF_NOTRAILERS for openbsd #893
Conversation
Did you mean to enable |
@asomers it was basically renamed, that's why I've included it in the commit. Should I split it anyway? |
Ahh, well in that case you can leave it in one commit, but you should still mention it. Also, it looks like this change is going to break compiling Nix for older versions of OpenBSD. Can you mention that in the CHANGELOG? |
a70a3b7
to
fa310a0
Compare
I've changed the commit message and added a note to the changelog. |
So removing |
I suppose I should ask what OpenBSD's support policy is. When will 6.2 go EOL? |
OpenBSD 6.2 is going EOL when 6.4 is released, so around april 2019. Removing |
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.
Could you also explain why you're removing this symbol in the commit message?
@@ -47,6 +47,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). | |||
([#833](https://github.com/nix-rust/nix/pull/833)) | |||
- Enabled more `ptrace::Request` definitions for uncommon Linux platforms | |||
([#892](https://github.com/nix-rust/nix/pull/892)) | |||
- Remove `IFF_NOTRAILERS` on OpenBSD, as it has been removed in OpenBSD 6.3 |
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.
Needs a link to the PR
IFF_NOTRAILERS has been removed in OpenBSD 6.3 openbsd/src@beb8b0d
I've updated the changelog and the commit message. |
bors r+ |
893: Remove IFF_NOTRAILERS for openbsd r=asomers a=kpcyrd nix currently doesn't compile on openbsd because `IFF_NOTRAILERS` isn't found. This PR fixes the openbsd build again (tested on 6.3). It seems it was changed in this commit: openbsd/src@beb8b0d Co-authored-by: kpcyrd <[email protected]>
Timed out |
bors retry |
893: Remove IFF_NOTRAILERS for openbsd r=asomers a=kpcyrd nix currently doesn't compile on openbsd because `IFF_NOTRAILERS` isn't found. This PR fixes the openbsd build again (tested on 6.3). It seems it was changed in this commit: openbsd/src@beb8b0d Co-authored-by: kpcyrd <[email protected]>
The crate is now successfully building on OpenBSD 6.3: https://openbsd.rs/#/builders/8 Any chance we could get a release soon? :) |
nix currently doesn't compile on openbsd because
IFF_NOTRAILERS
isn't found. This PR fixes the openbsd build again (tested on 6.3). It seems it was changed in this commit:openbsd/src@beb8b0d