From 05e802d5fe8d34b326ad251d5e25b76f7d006b33 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sun, 1 May 2016 18:11:50 +0200 Subject: [PATCH] uxcons: Don't try to include on systems that don't have it. Also include for ancient systems that define select() there. --- unix/uxcons.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/unix/uxcons.c b/unix/uxcons.c index f2a25f3f..641c4b0f 100644 --- a/unix/uxcons.c +++ b/unix/uxcons.c @@ -12,7 +12,10 @@ #include #include #include +#include +#ifndef HAVE_NO_SYS_SELECT_H #include +#endif #include "putty.h" #include "storage.h"