Annotation of embedaddon/trafshow/config.h.in, revision 1.1.1.1
1.1 misho 1: /*
2: * Copyright (c) 2004 Rinet Corp., Novosibirsk, Russia
3: *
4: * Redistribution and use in source forms, with and without modification,
5: * are permitted provided that this entire comment appears intact.
6: * Redistribution in binary form may occur without any restrictions.
7: *
8: * THIS SOFTWARE IS PROVIDED ``AS IS'' WITHOUT ANY WARRANTIES OF ANY KIND.
9: */
10:
11: #ifndef _CONFIG_H_
12: #define _CONFIG_H_
13:
14: /*
15: * This file contain compile-time options and system-depended definitions.
16: * Please edit config.h after `./configure' before `make' (if required).
17: */
18:
19: /*
20: * The curses library definition.
21: */
22:
23: /* Define if you have the slang curses library (-lslang) */
24: #undef HAVE_SLCURSES
25:
26: /* Define if you have the ncurses library (-lncurses) */
27: #undef HAVE_NCURSES
28:
29: /* Define if you have the curses library (-lcurses) */
30: #undef HAVE_CURSES
31:
32: /* Define if your curses has a colors functions such as
33: has_colors(), start_color(), init_pair(), and so on */
34: #undef HAVE_HAS_COLORS
35:
36: /* Define if your curses has the bkgd() function */
37: #undef HAVE_BKGD
38:
39: /* Define if your curses has the wbkgd() function */
40: #undef HAVE_WBKGD
41:
42: /* Define if your curses has the wredrawln() function */
43: #undef HAVE_WREDRAWLN
44:
45: /* Define if your curses has the resizeterm() function */
46: #undef HAVE_RESIZETERM
47:
48: /* Define if your curses has the use_default_colors() function */
49: #undef HAVE_USE_DEFAULT_COLORS
50:
51: /*
52: * System-depended definition.
53: */
54:
55: /* Define to `unsigned char' if <sys/types.h> doesn't define */
56: #undef u_int8_t
57:
58: /* Define to `unsigned short' if <sys/types.h> doesn't define */
59: #undef u_int16_t
60:
61: /* Define to `unsigned int' if <sys/types.h> doesn't define */
62: #undef u_int32_t
63:
64: /* Define to `unsigned long long' if <sys/types.h> doesn't define */
65: #undef u_int64_t
66:
67: /* Define to `unsigned int' if <sys/types.h> doesn't define */
68: #undef in_addr_t
69:
70: /* Define to `int' if <sys/types.h> or <sys/socket.h> doesn't define */
71: #undef socklen_t
72:
73: /* Define if <sys/socket.h> has declared `struct sockaddr_storage' */
74: #undef HAVE_SOCKADDR_STORAGE
75:
76: /* Define if <netinet/if_ether.h> has declared `struct ether_addr' */
77: #undef HAVE_ETHER_ADDR
78:
79: /* Define if your libpcap has the pcap_dump_flush() function */
80: #undef HAVE_PCAP_DUMP_FLUSH
81:
82: /* Define if your libpcap has the pcap_get_selectable_fd() function */
83: #undef HAVE_PCAP_GET_SELECTABLE_FD
84:
85: /* Define if you have the siginterrupt() function */
86: #undef HAVE_SIGINTERRUPT
87:
88: /* Define if you have the strcasecmp() function */
89: #undef HAVE_STRCASECMP
90:
91: /* Define if you have the strftime() function */
92: #undef HAVE_STRFTIME
93:
94: /* Define if you have POSIX threads libraries and header files */
95: #undef HAVE_PTHREAD
96:
97: /* Define if you have the <sys/termios.h> header file */
98: #undef HAVE_SYS_TERMIOS_H
99:
100: /* Define if you have the <net/if_dl.h> header file */
101: #undef HAVE_NET_IF_DL_H
102:
103: /* Define if you have the <resolv.h> header file */
104: #undef HAVE_RESOLV_H
105:
106: /* Define to empty if the keyword does not work */
107: #undef const
108:
109: /* fake for osf */
110: #undef __STDC__
111:
112: #endif /* !_CONFIG_H */
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>