Commit 7471ecd7 authored by Rusty Russell's avatar Rusty Russell

tools/configurator: add HAVE_SYS_TERMIOS_H

As recently required by ccan/opt.
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent 2179b06e
......@@ -249,6 +249,8 @@ static struct test tests[] = {
"return ({ int x = argc; x == argc ? 0 : 1; });" },
{ "HAVE_SYS_FILIO_H", OUTSIDE_MAIN, NULL, NULL, /* Solaris needs this for FIONREAD */
"#include <sys/filio.h>\n" },
{ "HAVE_SYS_TERMIOS_H", OUTSIDE_MAIN, NULL, NULL,
"#include <sys/termios.h>\n" },
{ "HAVE_TYPEOF", INSIDE_MAIN, NULL, NULL,
"__typeof__(argc) i; i = argc; return i == argc ? 0 : 1;" },
{ "HAVE_UTIME", DEFINES_FUNC, NULL, NULL,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment