acconfig.h 901 B

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