From cbab9538ea0a9b1cba55f797665e9fa853262f03 Mon Sep 17 00:00:00 2001 From: Thomas Stibor Date: Wed, 24 Oct 2012 12:20:31 +0200 Subject: [PATCH] LU-1924 build: configure can not find libgssapi_krb5.so ./configure --enable-gss cannot find on Debian amd64/x86_64 wheezy the file libgssapi_krb5.so although it exists in the directory /usr/lib/x86_x64-linux-gnu. Probably some other amd64/x86_64 Linux distributions are effected as well. Signed-off-by: Thomas Stibor Change-Id: Ife12e11224db4ef64adbcedb31cc1c07cf1c9b2e Reviewed-on: http://review.whamcloud.com/4378 Reviewed-by: Andreas Dilger Reviewed-by: Fan Yong Tested-by: Hudson Tested-by: Maloo --- lustre/autoconf/kerberos5.m4 | 1 + 1 file changed, 1 insertion(+) diff --git a/lustre/autoconf/kerberos5.m4 b/lustre/autoconf/kerberos5.m4 index dfa5738..05c2ee3 100644 --- a/lustre/autoconf/kerberos5.m4 +++ b/lustre/autoconf/kerberos5.m4 @@ -38,6 +38,7 @@ AC_DEFUN([AC_KERBEROS_V5],[ \( -f $dir/lib/libgssapi_krb5.a -o \ -f $dir/lib64/libgssapi_krb5.a -o \ -f $dir/lib64/libgssapi_krb5.so -o \ + -f $dir/lib/x86_64-linux-gnu/libgssapi_krb5.so -o \ -f $dir/lib/libgssapi_krb5.so \) ; then AC_DEFINE(HAVE_KRB5, 1, [Define this if you have MIT Kerberos libraries]) KRBDIR="$dir" -- 1.8.3.1