diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2011-04-27 11:35:20 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2011-04-27 11:47:24 -0400 |
commit | 505383ec905863bb8f4f563f694b9bf077f9002c (patch) | |
tree | 32dc1bd116a8b671e1a7bef17f37272a368cc27d | |
parent | 9ea75b5ccc838b41edf157682854f9cd4b88b3e5 (diff) | |
download | sssd-505383ec905863bb8f4f563f694b9bf077f9002c.tar.gz sssd-505383ec905863bb8f4f563f694b9bf077f9002c.tar.bz2 sssd-505383ec905863bb8f4f563f694b9bf077f9002c.zip |
Disable libcrypto code
-rw-r--r-- | configure.ac | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/configure.ac b/configure.ac index d71578dd..ba1c03bd 100644 --- a/configure.ac +++ b/configure.ac @@ -95,7 +95,6 @@ WITH_SELINUX WITH_NSCD WITH_SEMANAGE WITH_LIBNL -WITH_CRYPTO m4_include([src/external/pkg.m4]) m4_include([src/external/libpopt.m4]) @@ -176,14 +175,8 @@ if test x$HAVE_SYSTEMD_UNIT != x; then AM_CHECK_SYSTEMD fi -if test x$cryptolib = xnss; then - AM_CHECK_NSS -fi -if test x$cryptolib = xlibcrypto; then - AM_CHECK_LIBCRYPTO - AC_MSG_WARN([libcrypto back end does not implement all the crypto features, \ -notably password obfuscation. Using the NSS backend is recommended.]) -fi +AM_CHECK_NSS +AM_CONDITIONAL([HAVE_NSS], [test x"$NSS_CFLAGS" != x]) AC_CHECK_HEADERS([sys/inotify.h]) |