fd9cea43fc
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
67 lines
1.3 KiB
C
67 lines
1.3 KiB
C
/*
|
|
* User definable configuration options
|
|
*/
|
|
|
|
/* Define to 1 if you want KEEPALIVE timers */
|
|
#define DO_KEEPALIVE 0
|
|
|
|
/*********************************************************/
|
|
/*
|
|
* Autoconf defined configuration options
|
|
* You shouldn't need to touch any of these
|
|
*/
|
|
|
|
/* Define if you have sys/ioctl.h */
|
|
#undef HAVE_SYS_IOCTL_H
|
|
#ifndef _WIN32
|
|
#define HAVE_SYS_IOCTL_H
|
|
#endif
|
|
|
|
/* Define if you have sys/filio.h */
|
|
#undef HAVE_SYS_FILIO_H
|
|
#ifdef __APPLE__
|
|
#define HAVE_SYS_FILIO_H
|
|
#endif
|
|
|
|
/* Define if the machine is big endian */
|
|
//#undef HOST_WORDS_BIGENDIAN
|
|
|
|
/* Define if iovec needs to be declared */
|
|
#undef DECLARE_IOVEC
|
|
#ifdef _WIN32
|
|
#define DECLARE_IOVEC
|
|
#endif
|
|
|
|
/* Define if you have a POSIX.1 sys/wait.h */
|
|
#undef HAVE_SYS_WAIT_H
|
|
|
|
/* Define if you have sys/select.h */
|
|
#undef HAVE_SYS_SELECT_H
|
|
#ifndef _WIN32
|
|
#define HAVE_SYS_SELECT_H
|
|
#endif
|
|
|
|
/* Define if you have arpa/inet.h */
|
|
#undef HAVE_ARPA_INET_H
|
|
#ifndef _WIN32
|
|
#define HAVE_ARPA_INET_H
|
|
#endif
|
|
|
|
/* Define if you have sys/stropts.h */
|
|
#undef HAVE_SYS_STROPTS_H
|
|
|
|
/* Define to sizeof(char *) */
|
|
#define SIZEOF_CHAR_P (HOST_LONG_BITS / 8)
|
|
|
|
/* Define if you have inet_aton */
|
|
#undef HAVE_INET_ATON
|
|
#ifndef _WIN32
|
|
#define HAVE_INET_ATON
|
|
#endif
|
|
|
|
/* Define if you DON'T have unix-domain sockets */
|
|
#undef NO_UNIX_SOCKETS
|
|
#ifdef _WIN32
|
|
#define NO_UNIX_SOCKETS
|
|
#endif
|