-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
No support of utmpx on OpenBSD #5596
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
Comments
Sounds good! As a semi-related question, does that mean we can't support these utilities on Edit: I did some digging and we indeed need to implement them some other way on OpenBSD. |
Yes, tools with |
- build.rs: add openbsd in krate list - Cargo.toml: add feature openbsd => no utmpx support - Fixes uutils#5596 Signed-off-by: Laurent Cheylus <foxy@free.fr>
- See issue uutils#5596 for details Signed-off-by: Laurent Cheylus <foxy@free.fr>
- See issue uutils#5596 for details Signed-off-by: Laurent Cheylus <foxy@free.fr>
- See issue uutils#5596 for details Signed-off-by: Laurent Cheylus <foxy@free.fr>
- See issue uutils#5596 for details
- See issue uutils#5596 for details
- See issue uutils#5596 for details
Uh oh!
There was an error while loading. Please reload this page.
Following issue #5448
On OpenBSD-current (future version 7.5) on amd64, with Rust 1.73.0,
uucore build fails using
unix
feature:There is no support of
utmpx
on OpenBSD (only support forutmp
) and accordingly, no support inlibc
crate.To fix this issue, I propose to create a specific feature in
Cargo.toml
for OpenBSD to disable use ofutmpx
: don't includefeat_require_unix_utmpx
in this new feature.I have a pending branch with this addition and other commits to fix build on OpenBSD without using
utmpx
. I will submit a PR when my work is finished for build and tests.The text was updated successfully, but these errors were encountered: