| /* source: xioconfig.h */ |
| /* Copyright Gerhard Rieger and contributors (see file CHANGES) */ |
| /* Published under the GNU General Public License V.2, see file COPYING */ |
| |
| #ifndef __xioconfig_h_included |
| #define __xioconfig_h_included 1 |
| |
| /* ensure some dependencies between configure WITH defines. must be included |
| past config.h */ |
| |
| #if WITH_STDIO || WITH_FDNUM |
| # define WITH_FD 1 |
| #endif |
| |
| #if WITH_FILE || WITH_GOPEN || WITH_CREAT || WITH_PIPE |
| # define WITH_OPEN 1 |
| #endif |
| |
| #if WITH_OPEN || WITH_PIPE || WITH_UNIX || WITH_PTY |
| # define WITH_NAMED 1 |
| #endif |
| |
| #if WITH_TERMIOS || WITH_PTY || WITH_READLINE |
| # define _WITH_TERMIOS 1 |
| #endif |
| |
| #if WITH_SOCKS4A |
| # define WITH_SOCKS4 1 |
| #endif |
| |
| #if WITH_SOCKS4 || WITH_PROXY |
| # define WITH_TCP 1 |
| # define WITH_IP4 1 /* currently this socks implementation does not work |
| with IP6 */ |
| #endif |
| |
| #if WITH_OPENSSL |
| # define WITH_TCP 1 |
| # define WITH_IP4 1 |
| #endif |
| |
| #if 0 |
| #if WITH_IP6 |
| # if !defined(HAVE_NETINET_IP6_H) |
| # undef WITH_IP6 |
| # endif |
| #endif |
| #endif |
| |
| #if !WITH_IP4 && !WITH_IP6 |
| # if WITH_TCP || WITH_UDP || WITH_SCTP || WITH_DCCP || WITH_UDPLITE || WITH_RAWIP |
| # define WITH_IP4 1 |
| # endif |
| #endif |
| |
| #if WITH_UDP || WITH_UDPLITE |
| # define _WITH_UDP 1 |
| #endif |
| |
| #if WITH_UNIX || WITH_IP4 || WITH_IP6 || WITH_SOCKS4 || WITH_RAWIP || WITH_GENERICSOCKET |
| # define _WITH_SOCKET 1 |
| #else |
| # undef _WITH_SOCKET |
| #endif |
| |
| #if !_WITH_SOCKET |
| # undef WITH_LISTEN |
| #endif |
| |
| #if !WITH_LISTEN |
| # undef WITH_LIBWRAP |
| #endif |
| |
| #if WITH_INTERFACE || WITH_TUN |
| # define _WITH_INTERFACE 1 |
| #else |
| # define _WITH_INTERFACE 0 |
| #endif |
| |
| #if WITH_GENERICSOCKET || _WITH_INTERFACE |
| # define _WITH_SOCKET 1 |
| #endif |
| |
| #if WITH_IP4 || WITH_TUN |
| # define _WITH_IP4 1 |
| #endif |
| |
| #if WITH_IP6 || WITH_TUN |
| # define _WITH_IP6 1 |
| #endif |
| |
| #if WITH_NAMED |
| # define _WITH_NAMED 1 |
| #endif |
| |
| #if WITH_FILE |
| # define _WITH_FILE 1 |
| #endif |
| |
| |
| #if HAVE_DEV_PTMX && HAVE_GRANTPT && HAVE_UNLOCKPT && HAVE_PROTOTYPE_LIB_ptsname |
| #else |
| # undef HAVE_DEV_PTMX |
| #endif |
| |
| #if HAVE_DEV_PTC /* && HAVE_GRANTPT && HAVE_UNLOCKPT && HAVE_PROTOTYPE_LIB_ptsname */ |
| #else |
| # undef HAVE_DEV_PTC |
| #endif |
| |
| |
| /* MacOS does not seem to have any pty implementation */ |
| #if WITH_PTY && (HAVE_DEV_PTC || HAVE_DEV_PTMX || HAVE_OPENPTY) |
| # define HAVE_PTY 1 |
| #else |
| # undef HAVE_PTY |
| #endif |
| |
| #ifndef HAVE_TYPE_SOCKLEN |
| typedef int socklen_t; |
| #endif /* !defined(HAVE_TYPE_SOCKLEN) */ |
| |
| #ifndef HAVE_TYPE_UINT8 |
| typedef unsigned char uint8_t; |
| #endif |
| |
| #ifndef HAVE_TYPE_UINT16 |
| typedef unsigned short uint16_t; |
| #endif |
| |
| #ifndef HAVE_TYPE_UINT32 |
| typedef unsigned int uint32_t; |
| #endif |
| |
| #ifndef HAVE_TYPE_SA_FAMILY_T |
| typedef uint16_t sa_family_t; |
| #endif |
| |
| #endif /* !defined(__xioconfig_h_included) */ |