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