diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 344e76f1a..be17361a3 100644 --- a/configure.ac +++ b/configure.ac @@ -2099,6 +2099,23 @@ if test $zsh_cv_c_zle_unicode_support = yes; then AC_DEFINE(MULTIBYTE_SUPPORT) fi +dnl +dnl static user lookup +dnl +AC_ARG_ENABLE(dynamic-nss, + AC_HELP_STRING([--disable-dynamic-nss], [do not call + functions that will require dynamic NSS + modules]), +[zsh_cv_c_dynamic_nss=$enableval], +[]) + +AH_TEMPLATE([DISABLE_DYNAMIC_NSS], +[Define to 1 if you want to avoid calling functions that will require + dynamic NSS modules.]) +if test $zsh_cv_c_dynamic_nss = no; then + AC_DEFINE(DISABLE_DYNAMIC_NSS) +fi + dnl --------------- dnl dynamic loading dnl --------------- |