config.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*
  2. * ngIRCd -- The Next Generation IRC Daemon
  3. * Copyright (c)2001-2007 Alexander Barton (alex@barton.de).
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. * Please read the file COPYING, README and AUTHORS for more information.
  10. *
  11. * $Id: config.h,v 1.1 2007/11/19 22:11:36 alex Exp $
  12. *
  13. * Static configuration file for Mac OS X Xcode project
  14. */
  15. #define PACKAGE_NAME "ngircd"
  16. #define VERSION "??"
  17. #define SYSCONFDIR "/etc/ngircd"
  18. /* -- Build options -- */
  19. /* Define if debug-mode should be enabled */
  20. #define DEBUG 1
  21. /* Define if the server should do IDENT requests */
  22. /*#define IDENTAUTH 1*/
  23. /* Define if IRC+ protocol should be used */
  24. #define IRCPLUS 1
  25. /* Define if IRC sniffer should be enabled */
  26. /*#define SNIFFER 1*/
  27. /* Define if syslog should be used for logging */
  28. #define SYSLOG 1
  29. /* Define if TCP wrappers should be used */
  30. /*#define TCPWRAP 1*/
  31. /* Define if support for Zeroconf should be included */
  32. /*#define ZEROCONF 1*/
  33. /* Define if zlib compression should be enabled */
  34. #define ZLIB 1
  35. /* -- Supported features -- */
  36. /* Define if SSP C support is enabled. */
  37. #define ENABLE_SSP_CC 1
  38. /* Define to 1 if the C compiler supports function prototypes. */
  39. #define PROTOTYPES 1
  40. /* Define like PROTOTYPES; this can be used by system headers. */
  41. #define __PROTOTYPES 1
  42. /* Define to 1 if you have the <sys/types.h> header file. */
  43. #define HAVE_SYS_TYPES_H 1
  44. /* Define to 1 if you have the <inttypes.h> header file. */
  45. #define HAVE_INTTYPES_H 1
  46. /* Define to 1 if you have the <stddef.h> header file. */
  47. #define HAVE_STDDEF_H 1
  48. /* Define to 1 if you have the <stdbool.h> header file. */
  49. #define HAVE_STDBOOL_H 1
  50. /* Define to 1 if you have the <arpa/inet.h> header file. */
  51. #define HAVE_ARPA_INET_H 1
  52. /* Define to 1 if you have the `kqueue' function. */
  53. #define HAVE_KQUEUE 1
  54. /* Define to 1 if you have the `inet_ntoa' function. */
  55. #define HAVE_INET_NTOA 1
  56. /* Define to 1 if you have the `snprintf' function. */
  57. #define HAVE_SNPRINTF 1
  58. /* Define to 1 if you have the `strlcat' function. */
  59. #define HAVE_STRLCAT 1
  60. /* Define to 1 if you have the `strlcpy' function. */
  61. #define HAVE_STRLCPY 1
  62. /* Define to 1 if you have the `strdup' function. */
  63. #define HAVE_STRDUP 1
  64. /* Define to 1 if you have the `vsnprintf' function. */
  65. #define HAVE_VSNPRINTF 1
  66. /* Define if socklen_t exists */
  67. #define HAVE_socklen_t 1
  68. #ifdef ZEROCONF
  69. /* Define to 1 if you have the <DNSServiceDiscovery/DNSServiceDiscovery.h> header file. */
  70. #define HAVE_DNSSERVICEDISCOVERY_DNSSERVICEDISCOVERY_H 1
  71. /* Define to 1 if you have the `DNSServiceRegistrationCreate' function. */
  72. #define HAVE_DNSSERVICEREGISTRATIONCREATE 1
  73. #endif
  74. /* -eof- */