-
Notifications
You must be signed in to change notification settings - Fork 81
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
SIGUNUSED vs SIGSYS #131
Comments
jonnrb
added a commit
to jonnrb/kmscon
that referenced
this issue
Jan 20, 2018
@Aetf yours failed with:
on Ubuntu 18.04. I recommend enabling the issue tracker there. |
Oh somehow I didn't notice I've disabled the issue tracker. Please move the discussion there: Aetf#2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
(had to rewrite this from earlier)
I'll submit this report here.
Compiling fails if src/pty.c:302 contains
for (i = 1; i < SIGUNUSED; ++i)
instead of forfor (i = 1; i < SIGSYS; ++i)
on some systems, such as Arch Linux because that signal seems to have a different name.Wikipedia calls the two synonymous
Compilation finishes and kmscon runs well afterwards.
The text was updated successfully, but these errors were encountered: