From: kouril Date: Tue, 1 Jun 2004 14:13:49 +0000 (+0000) Subject: Use the resolv library when checking for krb5_init_context() X-Git-Tag: v5.0-rc6~17 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=mod_auth_kerb.git;a=commitdiff_plain;h=9959fe15b62d2f5c39ad592dd08a441f94b42588 Use the resolv library when checking for krb5_init_context() --- diff --git a/configure.in b/configure.in index 009177a..9b11255 100644 --- a/configure.in +++ b/configure.in @@ -81,7 +81,7 @@ if test "x$with_krb5" != "xno" ; then if test -z "$KRB5_LDFLAGS" -a -n "$krb5_config_command"; then TMP_KRB5_LDFLAGS=`$krb5_config_command --libs gssapi 2>/dev/null` if test -n "$TMP_KRB5_LDFLAGS"; then - LIBS="$LIBS $TMP_KRB5_LDFLAGS" + LIBS="$LIBS $TMP_KRB5_LDFLAGS $LIB_resolv" AC_CHECK_LIB(krb5, krb5_init_context, [ KRB5_LDFLAGS="$TMP_KRB5_LDFLAGS" ]) LIBS="$ac_save_LIBS"