X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=contrib%2FMacOSX%2Fconfig.h;h=60b0618845bd78a70e4e40d389d2487e10fcab2d;hb=c62c2d349b718ad71ccabd88a42abe1ee5801ee3;hp=04b7ceb2e91cf95e643b566018822f3a97a03114;hpb=4659dae6eb230faeba6cfa45c0981914847bc1be;p=ngircd-alex.git diff --git a/contrib/MacOSX/config.h b/contrib/MacOSX/config.h index 04b7ceb2..60b06188 100644 --- a/contrib/MacOSX/config.h +++ b/contrib/MacOSX/config.h @@ -1,6 +1,6 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001-2007 Alexander Barton (alex@barton.de). + * Copyright (c)2001-2009 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 @@ -8,15 +8,20 @@ * (at your option) any later version. * Please read the file COPYING, README and AUTHORS for more information. * - * $Id: config.h,v 1.1 2007/11/19 22:11:36 alex Exp $ - * * Static configuration file for Mac OS X Xcode project */ #define PACKAGE_NAME "ngircd" -#define VERSION "??" +#ifndef VERSION +#define VERSION "??("__DATE__")" +#endif #define SYSCONFDIR "/etc/ngircd" +#ifndef TARGET_VENDOR +#define TARGET_VENDOR "apple" +#define TARGET_OS "darwin" +#endif + /* -- Build options -- */ /* Define if debug-mode should be enabled */ @@ -43,6 +48,9 @@ /* Define if zlib compression should be enabled */ #define ZLIB 1 +/* Define if IPV6 protocol should be enabled */ +#define WANT_IPV6 1 + /* -- Supported features -- */ /* Define if SSP C support is enabled. */ @@ -78,6 +86,12 @@ #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 if socklen_t exists */ #define HAVE_socklen_t 1 @@ -89,4 +103,4 @@ #define HAVE_DNSSERVICEREGISTRATIONCREATE 1 #endif -/* -eof- */ \ No newline at end of file +/* -eof- */