X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=contrib%2FMacOSX%2Fconfig.h;h=761a68e1e2a61ad64ad5e9ffc92dfd14b8d06f95;hp=66465e26a8f6eee0777ed2687cb12a04271c6a0d;hb=3d7aa9f90626bb16ef9db9c9c739ba748976448c;hpb=1ddc74f13e3feb5be6af4294e1f6a8162edca8a7 diff --git a/contrib/MacOSX/config.h b/contrib/MacOSX/config.h index 66465e26..761a68e1 100644 --- a/contrib/MacOSX/config.h +++ b/contrib/MacOSX/config.h @@ -1,6 +1,6 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001-2009 Alexander Barton (alex@barton.de). + * Copyright (c)2001-2013 Alexander Barton (alex@barton.de) and Contributors. * * 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 @@ -11,17 +11,23 @@ * Static configuration file for Mac OS X Xcode project */ -#define PACKAGE_NAME "ngircd" +#define PACKAGE_NAME "ngIRCd" +# define PACKAGE "ngircd" #ifndef VERSION -#define VERSION "??("__DATE__")" +# define VERSION "??("__DATE__")" #endif -#define SYSCONFDIR "/etc/ngircd" -#ifndef TARGET_VENDOR -#define TARGET_VENDOR "apple" -#define TARGET_OS "darwin" +#ifndef HOST_VENDOR +# define HOST_VENDOR "apple" +# define HOST_OS "darwin" +# ifdef __x86_64 +# define HOST_CPU "x86_64" +# endif #endif +#define SYSCONFDIR "/etc/ngircd" +#define DOCDIR "/usr/share/doc/ngircd" + /* -- Build options -- */ /* Define if debug-mode should be enabled */ @@ -42,15 +48,18 @@ /* Define if TCP wrappers should be used */ /*#define TCPWRAP 1*/ -/* Define if support for Zeroconf should be included */ -/*#define ZEROCONF 1*/ - /* Define if zlib compression should be enabled */ #define ZLIB 1 /* Define if IPV6 protocol should be enabled */ #define WANT_IPV6 1 +/* Define if PAM should be used */ +#define PAM 1 + +/* Define if libiconv can be used, e.g. for CHARCONV */ +#define ICONV 1 + /* -- Supported features -- */ /* Define if SSP C support is enabled. */ @@ -74,6 +83,10 @@ /* Define to 1 if you have the header file. */ #define HAVE_NETINET_IP_H 1 +/* Define to 1 if you have the `gai_strerror' function. */ +#define HAVE_GAI_STRERROR 1 +/* Define to 1 if you have the `iconv_open' function. */ +#define HAVE_ICONV_OPEN 1 /* Define to 1 if you have the `kqueue' function. */ #define HAVE_KQUEUE 1 /* Define to 1 if you have the `inet_ntoa' function. */ @@ -92,17 +105,30 @@ #define HAVE_INET_ATON 1 /* Define to 1 if you have the `getaddrinfo' function. */ #define HAVE_GETADDRINFO 1 +/* getaddrinfo(0) */ +#define HAVE_WORKING_GETADDRINFO 1 /* Define to 1 if you have the `getnameinfo' function. */ #define HAVE_GETNAMEINFO 1 +/* Define to 1 if you have the `sigaction' function. */ +#define HAVE_SIGACTION 1 +/* Define to 1 if you have the `setsid' function. */ +#define HAVE_SETSID 1 /* Define if socklen_t exists */ #define HAVE_socklen_t 1 -#ifdef ZEROCONF -/* Define to 1 if you have the header file. */ -#define HAVE_DNSSERVICEDISCOVERY_DNSSERVICEDISCOVERY_H 1 -/* Define to 1 if you have the `DNSServiceRegistrationCreate' function. */ -#define HAVE_DNSSERVICEREGISTRATIONCREATE 1 +#ifdef PAM +/* Define to 1 if you have the `pam_authenticate' function. */ +#define HAVE_PAM_AUTHENTICATE 1 +#if (__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1060) +/* Define to 1 if you have the header file. */ +#define HAVE_PAM_PAM_APPL_H 1 +/* Mac OS X <10.6 doesn't have pam_fail_delay() */ +#define NO_PAM_FAIL_DELAY 1 +#else +/* Define to 1 if you have the header file. */ +#define HAVE_SECURITY_PAM_APPL_H 1 +#endif #endif /* -eof- */