X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=contrib%2FMacOSX%2Fconfig.h;h=0da178dd5cba72ce87d433f3155e115ad423049b;hp=0b5a141b4ff5a6a52661279b0190945a57ac3a67;hb=b1a117cd98bad64ac56f06f854d4b00f488e44ea;hpb=eb159e0a8d38449c10680cf3ed747fdb5c5adbc8 diff --git a/contrib/MacOSX/config.h b/contrib/MacOSX/config.h index 0b5a141b..0da178dd 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-2010 Alexander Barton (alex@barton.de). * * 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 @@ -12,7 +12,9 @@ */ #define PACKAGE_NAME "ngircd" -#define VERSION "??" +#ifndef VERSION +#define VERSION "??("__DATE__")" +#endif #define SYSCONFDIR "/etc/ngircd" #ifndef TARGET_VENDOR @@ -46,6 +48,12 @@ /* 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 + /* -- Supported features -- */ /* Define if SSP C support is enabled. */ @@ -66,6 +74,8 @@ #define HAVE_STDBOOL_H 1 /* Define to 1 if you have the header file. */ #define HAVE_ARPA_INET_H 1 +/* Define to 1 if you have the header file. */ +#define HAVE_NETINET_IP_H 1 /* Define to 1 if you have the `kqueue' function. */ #define HAVE_KQUEUE 1 @@ -81,6 +91,14 @@ #define HAVE_STRDUP 1 /* Define to 1 if you have the `vsnprintf' function. */ #define HAVE_VSNPRINTF 1 +/* 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 +/* Define to 1 if you have the `sigaction' function. */ +#define HAVE_SIGACTION 1 /* Define if socklen_t exists */ #define HAVE_socklen_t 1 @@ -92,4 +110,11 @@ #define HAVE_DNSSERVICEREGISTRATIONCREATE 1 #endif +#ifdef PAM +/* Define to 1 if you have the `pam_authenticate' function. */ +#define HAVE_PAM_AUTHENTICATE 1 +/* Define to 1 if you have the header file. */ +#define HAVE_PAM_PAM_APPL_H 1 +#endif + /* -eof- */