The file newlib/libc/include/termios.h of the devkitA64 branch (maybe others?) includes <sys/termios.h> which is not included or defined anywhere, which causes code that includes termios.h to fail compilation.
I was in the process of porting OpenSSL to devkitA64 in which I found that the path of least resistance to getting the port compiling was to simply create a blank sys/termios.h file. What do you think is the best approach for handling this termios.h file, since in its current state can only cause compilation errors when included? Short of fully implementing sys/termios.h, should a blank sys/termios.h file be created; termios.h be changed to do nothing; remove termios.h altogether?
The file
newlib/libc/include/termios.hof the devkitA64 branch (maybe others?) includes<sys/termios.h>which is not included or defined anywhere, which causes code that includestermios.hto fail compilation.I was in the process of porting OpenSSL to devkitA64 in which I found that the path of least resistance to getting the port compiling was to simply create a blank
sys/termios.hfile. What do you think is the best approach for handling thistermios.hfile, since in its current state can only cause compilation errors when included? Short of fully implementingsys/termios.h, should a blanksys/termios.hfile be created;termios.hbe changed to do nothing; removetermios.haltogether?