1/*
2 * acconfig.h
3 *
4 * Additional autoconf defines for this program.
5 *
6 * $Id: acconfig.h,v 1.6 2005/12/29 01:21:09 quozl Exp $
7 */
8
9/* Use BSD User land PPP? */
10#undef BSDUSER_PPP
11
12/* Use SLIRP? */
13#undef SLIRP
14
15/* Enable Broadcast Relay? */
16#undef BCRELAY
17
18/* Work as a PNS rather than a PAC? */
19#undef PNS_MODE
20
21/* Communicate between control and manager processes with a pipe */
22#undef CTRL_MGR_PIPE
23
24/* Where is my pppd? */
25#undef PPP_BINARY
26
27/* Syslog Facility to use?  See openlog(3). */
28#undef PPTP_FACILITY
29
30/* Have libwrap? */
31#undef HAVE_LIBWRAP
32
33/* Package name */
34#undef PACKAGE
35
36/* Version */
37#undef VERSION
38
39/* Just #define to int if it's not defined */
40#undef socklen_t
41
42/* These would be better as typedefs, but... */
43#undef u_int8_t
44#undef u_int16_t
45#undef u_int32_t
46
47/* And the signed size_t */
48/* (normal size_t is done by standard autoconf) */
49#undef ssize_t
50
51/* Define if you have an openpty() (non-standard check) */
52#undef HAVE_OPENPTY
53