Hi, I'm trying to debug a build failure for libtirpc-0.3.1 with GSSAPI support when using Heimdal 1.5.3 as Kerberos provider. Downstream bug report is at https://bugs.gentoo.org/show_bug.cgi?id=551036 src/svc_auth_gss.c has an unconditional #include <gssapi/gssapi_ext.h> but Heimdal doesn't ship that file; MIT-Krb5 does, though. It looks like most (but not all) of the functions that MIT-Krb5 declares in <gssapi/gssapi_ext.h> are declared in Heimdal by <gssapi/gssapi.h>. src/svc_auth_gss.c has #ifdef HAVE_KRB5 and #elif HAVE_HEIMDAL sections, but nothing I can see in the Autoconf system defines those. configure.ac does have AC_CHECK_HEADER([gssapi/gssapi.h], [HAVE_GSSAPI_H=yes], [HAVE_GSSAPI_H=no]) but that's just used internally in the configure script. Would it be correct to export HAVE_GSSAPI_H and HAVE_GSSAPI_EXT_H to config.h and have src/svc_auth_gss.c include gssapi.h and/or gssapi_ext.h depending on them? By the way, the link to the libtirpc gitweb on http://linux-nfs.org/wiki/index.php/Main_Page is broken. It points to http://git.linux-nfs.org/?p=steved/libtirpc.git;a=summary which is a 404. -- Karl-Johan Karlsson -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html