diff options
| author | Alexander Barton <alex@barton.de> | 2012-09-17 00:36:10 +0200 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2012-09-17 00:56:36 +0200 |
| commit | 222ecbffbb5f0c21e64002c95fe9447b4f6b6320 (patch) | |
| tree | eb5bcdbfe0d6dbb7fa86e2c82663de672bc67a9a /contrib/MacOSX/config.h | |
| parent | ce736fc15bd80044f3206ae36c7c0462decaf1be (diff) | |
| download | ngircd-222ecbffbb5f0c21e64002c95fe9447b4f6b6320.tar.gz ngircd-222ecbffbb5f0c21e64002c95fe9447b4f6b6320.zip | |
Implement new IRC+ "CHARCONV" command
See bug 109 and doc/Protocol.txt for details and documentation.
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 5b47e9da..a25d8861 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. */ |