slirp: remove unused HAVE_SYS_STROPTS_H
[qemu/ar7.git] / slirp / slirp_config.h
blob47811e36dc3b41aebd8c95b0545b3cdbb8624792
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 a POSIX.1 sys/wait.h */
36 #undef HAVE_SYS_WAIT_H
38 /* Define if you have sys/select.h */
39 #undef HAVE_SYS_SELECT_H
40 #ifndef _WIN32
41 #define HAVE_SYS_SELECT_H
42 #endif
44 /* Define if you have arpa/inet.h */
45 #undef HAVE_ARPA_INET_H
46 #ifndef _WIN32
47 #define HAVE_ARPA_INET_H
48 #endif
50 /* Define to sizeof(char *) */
51 #define SIZEOF_CHAR_P (HOST_LONG_BITS / 8)
53 /* Define if you have inet_aton */
54 #undef HAVE_INET_ATON
55 #ifndef _WIN32
56 #define HAVE_INET_ATON
57 #endif