2007-11-19 23:11:36 +01:00
|
|
|
/*
|
|
|
|
* ngIRCd -- The Next Generation IRC Daemon
|
2012-09-17 00:36:10 +02:00
|
|
|
* Copyright (c)2001-2012 Alexander Barton (alex@barton.de) and Contributors.
|
2007-11-19 23:11:36 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
* Please read the file COPYING, README and AUTHORS for more information.
|
|
|
|
*
|
|
|
|
* Static configuration file for Mac OS X Xcode project
|
|
|
|
*/
|
|
|
|
|
2012-11-02 14:16:58 +01:00
|
|
|
#define PACKAGE_NAME "ngIRCd"
|
|
|
|
#define PACKAGE "ngircd"
|
2009-01-06 16:01:52 +01:00
|
|
|
#ifndef VERSION
|
2009-04-10 13:08:04 +02:00
|
|
|
#define VERSION "??("__DATE__")"
|
2009-01-06 16:01:52 +01:00
|
|
|
#endif
|
2007-11-19 23:11:36 +01:00
|
|
|
#define SYSCONFDIR "/etc/ngircd"
|
|
|
|
|
2009-01-06 16:00:15 +01:00
|
|
|
#ifndef TARGET_VENDOR
|
|
|
|
#define TARGET_VENDOR "apple"
|
|
|
|
#define TARGET_OS "darwin"
|
|
|
|
#endif
|
|
|
|
|
2007-11-19 23:11:36 +01:00
|
|
|
/* -- Build options -- */
|
|
|
|
|
|
|
|
/* Define if debug-mode should be enabled */
|
|
|
|
#define DEBUG 1
|
|
|
|
|
|
|
|
/* Define if the server should do IDENT requests */
|
|
|
|
/*#define IDENTAUTH 1*/
|
|
|
|
|
|
|
|
/* Define if IRC+ protocol should be used */
|
|
|
|
#define IRCPLUS 1
|
|
|
|
|
|
|
|
/* Define if IRC sniffer should be enabled */
|
|
|
|
/*#define SNIFFER 1*/
|
|
|
|
|
|
|
|
/* Define if syslog should be used for logging */
|
|
|
|
#define SYSLOG 1
|
|
|
|
|
|
|
|
/* Define if TCP wrappers should be used */
|
|
|
|
/*#define TCPWRAP 1*/
|
|
|
|
|
|
|
|
/* Define if zlib compression should be enabled */
|
|
|
|
#define ZLIB 1
|
|
|
|
|
2009-01-06 17:39:11 +01:00
|
|
|
/* Define if IPV6 protocol should be enabled */
|
|
|
|
#define WANT_IPV6 1
|
|
|
|
|
2010-07-12 12:54:01 +02:00
|
|
|
/* Define if PAM should be used */
|
|
|
|
#define PAM 1
|
|
|
|
|
2012-09-17 00:36:10 +02:00
|
|
|
/* Define if libiconv can be used, e.g. for CHARCONV */
|
|
|
|
#define ICONV 1
|
|
|
|
|
2007-11-19 23:11:36 +01:00
|
|
|
/* -- Supported features -- */
|
|
|
|
|
|
|
|
/* Define if SSP C support is enabled. */
|
|
|
|
#define ENABLE_SSP_CC 1
|
|
|
|
|
|
|
|
/* Define to 1 if the C compiler supports function prototypes. */
|
|
|
|
#define PROTOTYPES 1
|
|
|
|
/* Define like PROTOTYPES; this can be used by system headers. */
|
|
|
|
#define __PROTOTYPES 1
|
|
|
|
|
|
|
|
/* Define to 1 if you have the <sys/types.h> header file. */
|
|
|
|
#define HAVE_SYS_TYPES_H 1
|
|
|
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
|
|
|
#define HAVE_INTTYPES_H 1
|
|
|
|
/* Define to 1 if you have the <stddef.h> header file. */
|
|
|
|
#define HAVE_STDDEF_H 1
|
|
|
|
/* Define to 1 if you have the <stdbool.h> header file. */
|
|
|
|
#define HAVE_STDBOOL_H 1
|
|
|
|
/* Define to 1 if you have the <arpa/inet.h> header file. */
|
|
|
|
#define HAVE_ARPA_INET_H 1
|
2009-12-31 00:38:47 +01:00
|
|
|
/* Define to 1 if you have the <netinet/ip.h> header file. */
|
|
|
|
#define HAVE_NETINET_IP_H 1
|
2007-11-19 23:11:36 +01:00
|
|
|
|
2011-12-24 13:16:38 +01:00
|
|
|
/* Define to 1 if you have the `gai_strerror' function. */
|
|
|
|
#define HAVE_GAI_STRERROR 1
|
2012-09-17 00:36:10 +02:00
|
|
|
/* Define to 1 if you have the `iconv_open' function. */
|
|
|
|
#define HAVE_ICONV_OPEN 1
|
2007-11-19 23:11:36 +01:00
|
|
|
/* Define to 1 if you have the `kqueue' function. */
|
|
|
|
#define HAVE_KQUEUE 1
|
|
|
|
/* Define to 1 if you have the `inet_ntoa' function. */
|
|
|
|
#define HAVE_INET_NTOA 1
|
|
|
|
/* Define to 1 if you have the `snprintf' function. */
|
|
|
|
#define HAVE_SNPRINTF 1
|
|
|
|
/* Define to 1 if you have the `strlcat' function. */
|
|
|
|
#define HAVE_STRLCAT 1
|
|
|
|
/* Define to 1 if you have the `strlcpy' function. */
|
|
|
|
#define HAVE_STRLCPY 1
|
|
|
|
/* Define to 1 if you have the `strdup' function. */
|
|
|
|
#define HAVE_STRDUP 1
|
|
|
|
/* Define to 1 if you have the `vsnprintf' function. */
|
|
|
|
#define HAVE_VSNPRINTF 1
|
2009-01-06 17:39:11 +01:00
|
|
|
/* Define to 1 if you have the `inet_aton' function. */
|
|
|
|
#define HAVE_INET_ATON 1
|
|
|
|
/* Define to 1 if you have the `getaddrinfo' function. */
|
|
|
|
#define HAVE_GETADDRINFO 1
|
|
|
|
/* Define to 1 if you have the `getnameinfo' function. */
|
|
|
|
#define HAVE_GETNAMEINFO 1
|
2010-09-22 14:11:30 +02:00
|
|
|
/* Define to 1 if you have the `sigaction' function. */
|
|
|
|
#define HAVE_SIGACTION 1
|
2012-10-06 17:58:44 +02:00
|
|
|
/* Define to 1 if you have the `setsid' function. */
|
|
|
|
#define HAVE_SETSID 1
|
2007-11-19 23:11:36 +01:00
|
|
|
|
|
|
|
/* Define if socklen_t exists */
|
|
|
|
#define HAVE_socklen_t 1
|
|
|
|
|
2010-07-12 12:54:01 +02:00
|
|
|
#ifdef PAM
|
|
|
|
/* Define to 1 if you have the `pam_authenticate' function. */
|
|
|
|
#define HAVE_PAM_AUTHENTICATE 1
|
2011-08-07 14:41:11 +02:00
|
|
|
#if (__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1060)
|
2010-07-12 12:54:01 +02:00
|
|
|
/* Define to 1 if you have the <pam/pam_appl.h> header file. */
|
|
|
|
#define HAVE_PAM_PAM_APPL_H 1
|
2010-10-26 15:13:24 +02:00
|
|
|
/* Mac OS X <10.6 doesn't have pam_fail_delay() */
|
|
|
|
#define NO_PAM_FAIL_DELAY 1
|
2011-08-07 14:41:11 +02:00
|
|
|
#else
|
|
|
|
/* Define to 1 if you have the <security/pam_appl.h> header file. */
|
|
|
|
#define HAVE_SECURITY_PAM_APPL_H 1
|
|
|
|
#endif
|
2010-07-12 12:54:01 +02:00
|
|
|
#endif
|
|
|
|
|
2008-04-13 23:43:12 +02:00
|
|
|
/* -eof- */
|