acconfig.h 961 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. /* Use BSD User land PPP? */
  9. #undef BSDUSER_PPP
  10. /* Use SLIRP? */
  11. #undef SLIRP
  12. /* Enable Broadcast Relay? */
  13. #undef BCRELAY
  14. /* Work as a PNS rather than a PAC? */
  15. #undef PNS_MODE
  16. /* Communicate between control and manager processes with a pipe */
  17. #undef CTRL_MGR_PIPE
  18. /* Where is my pppd? */
  19. #undef PPP_BINARY
  20. /* Syslog Facility to use? See openlog(3). */
  21. #undef PPTP_FACILITY
  22. /* Have libwrap? */
  23. #undef HAVE_LIBWRAP
  24. /* Package name */
  25. #undef PACKAGE
  26. /* Version */
  27. #undef VERSION
  28. /* Just #define to int if it's not defined */
  29. #undef socklen_t
  30. /* These would be better as typedefs, but... */
  31. #undef u_int8_t
  32. #undef u_int16_t
  33. #undef u_int32_t
  34. /* And the signed size_t */
  35. /* (normal size_t is done by standard autoconf) */
  36. #undef ssize_t
  37. /* Define if you have an openpty() (non-standard check) */
  38. #undef HAVE_OPENPTY