diff options
| author | Alexander Barton <alex@barton.de> | 2010-07-12 12:54:01 +0200 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2010-07-12 12:54:01 +0200 |
| commit | fb4b5acfb8871c43e34dc2aa9c354a86f14f9293 (patch) | |
| tree | 29f826a4073e7cdfa1d0a2225646765d9cb22079 /contrib/MacOSX/config.h | |
| parent | 77870ddf2d87ddf222d87b58cb9afdf0609d49dd (diff) | |
| download | ngircd-fb4b5acfb8871c43e34dc2aa9c354a86f14f9293.tar.gz ngircd-fb4b5acfb8871c43e34dc2aa9c354a86f14f9293.zip | |
Add new pam.{c|h} module to Xcode project
Adjust Xcode project and Mac OS X static config.h header to use PAM.
Diffstat (limited to 'contrib/MacOSX/config.h')
| -rw-r--r-- | contrib/MacOSX/config.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/contrib/MacOSX/config.h b/contrib/MacOSX/config.h index 66465e26..72c8875b 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 @@ -51,6 +51,9 @@ /* 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. */ @@ -105,4 +108,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 <pam/pam_appl.h> header file. */ +#define HAVE_PAM_PAM_APPL_H 1 +#endif + /* -eof- */ |