diff options
author | Clint Adams <clint@users.sourceforge.net> | 2006-02-19 19:36:31 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2006-02-19 19:36:31 +0000 |
commit | a9151388528c84d7993a366ae03b57f5a413ca78 (patch) | |
tree | 14e46a64fdf4d09ad98b431863d2442b3db60301 /Src/system.h | |
parent | 930c18ee44a562c915171fda9158dd613e7d97db (diff) | |
download | zsh-a9151388528c84d7993a366ae03b57f5a413ca78.tar.gz zsh-a9151388528c84d7993a366ae03b57f5a413ca78.tar.xz zsh-a9151388528c84d7993a366ae03b57f5a413ca78.zip |
22284: add --disable-dynamic-nss configure switch to disable use of getpw*(), getgr*(), initgroups() functions.
Diffstat (limited to 'Src/system.h')
-rw-r--r-- | Src/system.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Src/system.h b/Src/system.h index 33804e71a..377cd173e 100644 --- a/Src/system.h +++ b/Src/system.h @@ -710,3 +710,28 @@ extern short ospeed; # include <iconv.h> # endif #endif + +#if defined(HAVE_INITGROUPS) && !defined(DISABLE_DYNAMIC_NSS) +# define USE_INITGROUPS +#endif + +#if defined(HAVE_GETGRGID) && !defined(DISABLE_DYNAMIC_NSS) +# define USE_GETGRGID +#endif + +#if defined(HAVE_GETGRNAM) && !defined(DISABLE_DYNAMIC_NSS) +# define USE_GETGRNAM +#endif + +#if defined(HAVE_GETPWENT) && !defined(DISABLE_DYNAMIC_NSS) +# define USE_GETPWENT +#endif + +#if defined(HAVE_GETPWNAM) && !defined(DISABLE_DYNAMIC_NSS) +# define USE_GETPWNAM +#endif + +#if defined(HAVE_GETPWUID) && !defined(DISABLE_DYNAMIC_NSS) +# define USE_GETPWUID +#endif + |