From 298ef0676cb640d73474a6cde2bc142b8464eef7 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Mon, 12 Apr 2004 19:00:54 +0000 Subject: [PATCH] r185: fix linking prob surrounding --with-fake-kaserver and -lcrypto (This used to be commit 54912b70f2a6e26a278d6e94b830bf1f43896c3f) --- source3/configure.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source3/configure.in b/source3/configure.in index 5be6d822ef0..3a6269145d7 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2366,6 +2366,10 @@ if test x"$samba_cv_WITH_AFS" != x"no" || fi fi +if test x"$samba_cv_WITH_FAKE_KASERVER" != x"no"; then + AC_CHECK_LIB( crypto, DES_pcbc_encrypt, LIBS="$LIBS -lcrypto" ) +fi + if test x"$samba_cv_WITH_FAKE_KASERVER" != x"no" && test x"$have_afs_headers" == x"yes"; then AC_DEFINE(WITH_FAKE_KASERVER,1,[Whether to include AFS fake-kaserver support]) fi -- 2.11.4.GIT