diff options
| author | Alexander Barton <alex@barton.de> | 2012-10-06 18:25:43 +0200 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2012-10-06 18:26:25 +0200 |
| commit | 46b0eef721b9b3eec37d29aff65b6a7fc488a887 (patch) | |
| tree | d863ced9e38b1e6e38c8fef3afa984d69984ab45 /contrib/MacOSX/config.h | |
| parent | 4790d78c980c79abfd71c064be1eb085717210f8 (diff) | |
| parent | 343a90dc376eb9979151752ec33c64ca45b04802 (diff) | |
| download | ngircd-46b0eef721b9b3eec37d29aff65b6a7fc488a887.tar.gz ngircd-46b0eef721b9b3eec37d29aff65b6a7fc488a887.zip | |
Merge branch 'bug109-CHARCONV'
This closes bug #109. * bug109-CHARCONV: Debian: require "telnet" or "telnet-ssl" for building Debian ngircd-full[-dbg]: enable CHARCONV Add "CHARCONV" to "feature string" when enabled Implement new IRC+ "CHARCONV" command Added new configure option "--with-iconv" Conflicts: src/ngircd/messages.h
Diffstat (limited to 'contrib/MacOSX/config.h')
| -rw-r--r-- | contrib/MacOSX/config.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/contrib/MacOSX/config.h b/contrib/MacOSX/config.h index 5a712784..bf94d327 100644 --- a/contrib/MacOSX/config.h +++ b/contrib/MacOSX/config.h @@ -1,6 +1,6 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001-2011 Alexander Barton (alex@barton.de) and Contributors. + * Copyright (c)2001-2012 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 @@ -51,6 +51,9 @@ /* 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. */ @@ -76,6 +79,8 @@ /* 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. */ |