Compiling ncurses fails.
Created by: Nickforall
So whenever I do ./cook.sh ncurses build
it fails because it can't find termios.h
, instead it tries to include <sgtty.h>
.
I tried fixing it myself, but couldn't figure it out due to my lack of experience with autoconf, here's what I found however:
- Checking whether
termios.h
/termio.h
exists is done somewhere in ./configure - It created a variable called
_HAVE_TERMIOS_H
that is set to 0 - The code that is generated doesn't include termios.h, because autoconf thinks it's non-existent, instead.