From e8567098a4eaa81306effeaef430d9d74f603f7a Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 12 Jul 2013 22:21:42 +0100 Subject: Add support for Cgywin, apparently it is enough just to open the tty again in the server and fd passing is not necessary. Needs some ifdefs unfortunately but no way around that and some of them can go next time we're willing to do a protocol bump. Patch from J Raynor jxraynor at gmail dot com. --- compat.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'compat.h') diff --git a/compat.h b/compat.h index d3973797..b84ff400 100644 --- a/compat.h +++ b/compat.h @@ -30,6 +30,10 @@ #define __packed __attribute__ ((__packed__)) #endif +#ifndef ECHOPRT +#define ECHOPRT 0 +#endif + #ifndef HAVE_BSD_TYPES typedef uint8_t u_int8_t; typedef uint16_t u_int16_t; @@ -210,6 +214,7 @@ int daemon(int, int); #ifndef HAVE_B64_NTOP /* b64_ntop.c */ +#undef b64_ntop /* for Cygwin */ int b64_ntop(const char *, size_t, char *, size_t); #endif -- cgit