slirp: remove unused HAVE_SYS_WAIT_H
[qemu.git] / slirp / slirp_config.h
blob9becb98e111434c0bbd9ca61b326ea19543d51aa
1 /*
2 * User definable configuration options
3 */
5 /* Define to 1 if you want KEEPALIVE timers */
6 #define DO_KEEPALIVE 0
8 /*********************************************************/
9 /*
10 * Autoconf defined configuration options
11 * You shouldn't need to touch any of these
14 /* Define if you have sys/ioctl.h */
15 #undef HAVE_SYS_IOCTL_H
16 #ifndef _WIN32
17 #define HAVE_SYS_IOCTL_H
18 #endif
20 /* Define if you have sys/filio.h */
21 #undef HAVE_SYS_FILIO_H
22 #ifdef __APPLE__
23 #define HAVE_SYS_FILIO_H
24 #endif
26 /* Define if the machine is big endian */
27 //#undef HOST_WORDS_BIGENDIAN
29 /* Define if iovec needs to be declared */
30 #undef DECLARE_IOVEC
31 #ifdef _WIN32
32 #define DECLARE_IOVEC
33 #endif
35 /* Define if you have sys/select.h */
36 #undef HAVE_SYS_SELECT_H
37 #ifndef _WIN32
38 #define HAVE_SYS_SELECT_H
39 #endif
41 /* Define to sizeof(char *) */
42 #define SIZEOF_CHAR_P (HOST_LONG_BITS / 8)
44 /* Define if you have inet_aton */
45 #undef HAVE_INET_ATON
46 #ifndef _WIN32
47 #define HAVE_INET_ATON
48 #endif