[mod_authn_gssapi] needs -lcom_err under cygwin

This commit is contained in:
Glenn Strauss 2017-03-10 02:42:35 -05:00
parent bd77abe0f8
commit f94d666d15
1 changed files with 4 additions and 0 deletions

View File

@ -446,6 +446,10 @@ if test "x$use_krb5" = "xyes"; then
if test "x$KRB5_LIB" = x; then
AC_MSG_ERROR([gssapi_krb5 headers and/or libs where not found, install them or build with --without-krb5])
fi
case $host_os in
*cygwin* ) KRB5_LIB="$KRB5_LIB -lcom_err";;
* ) ;;
esac
fi
AC_SUBST(KRB5_LIB)