-
Notifications
You must be signed in to change notification settings - Fork 405
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
musl build fails with --disable-pututline #299
Comments
|
So... musl doesn't have ttyslot(), uclibc and dietlibc don't have ttyslot either, dropbear doesn't add it with --disable-pututline, and on glibc there's no need for --disable-pututline, because pututline() works. Is there any plan on making utmp work on musl? |
Could be useful on other old Unixes, or BSDs perhaps? |
I did some searching. I coudn't find any.
So... is there a plan to make utmp work on musl? |
Musl doesn't support utmp/wtmp, according to their FAQ, but I wanted to see if dropbear could write utmp/wtmp anyway.
First I patched musl
include/paths.h
to define a real path to utmp/wtmp:Then I tried building Dropbear with
--disable-pututline --disable-pututxline
, because these functions in musl are stubs. I get this error:Is this a bug?
Thanks.
The text was updated successfully, but these errors were encountered: