diff options
| author | Alexander Barton <alex@barton.de> | 2009-01-06 17:39:11 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2009-01-06 17:39:11 +0100 |
| commit | 75243ffb37aa1947a40435e79802626eb1ae11b3 (patch) | |
| tree | b4fc50638f89ef8721aca1cf29675ffa1c373cab /contrib/MacOSX | |
| parent | 5468ba37446a85bfb8a84eed74bf6c091156f682 (diff) | |
| download | ngircd-75243ffb37aa1947a40435e79802626eb1ae11b3.tar.gz ngircd-75243ffb37aa1947a40435e79802626eb1ae11b3.zip | |
Xcode: build ngIRCd with IPv6 support on Mac OS X
Diffstat (limited to 'contrib/MacOSX')
| -rw-r--r-- | contrib/MacOSX/config.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/contrib/MacOSX/config.h b/contrib/MacOSX/config.h index 9fd2dfcf..5ed07d9b 100644 --- a/contrib/MacOSX/config.h +++ b/contrib/MacOSX/config.h @@ -48,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. */ @@ -83,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 |