From 7471ecd79174306ee976a4ecc09cc2b9ebb4b501 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Thu, 6 Feb 2014 14:20:59 +1030 Subject: [PATCH] tools/configurator: add HAVE_SYS_TERMIOS_H As recently required by ccan/opt. Signed-off-by: Rusty Russell --- tools/configurator/configurator.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/configurator/configurator.c b/tools/configurator/configurator.c index bbf7259e..5ba8cb0b 100644 --- a/tools/configurator/configurator.c +++ b/tools/configurator/configurator.c @@ -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 \n" }, + { "HAVE_SYS_TERMIOS_H", OUTSIDE_MAIN, NULL, NULL, + "#include \n" }, { "HAVE_TYPEOF", INSIDE_MAIN, NULL, NULL, "__typeof__(argc) i; i = argc; return i == argc ? 0 : 1;" }, { "HAVE_UTIME", DEFINES_FUNC, NULL, NULL, -- 2.39.2