svn commit: r275082 - head/share/mk

Baptiste Daroussin bapt at FreeBSD.org
Tue Nov 25 22:17:31 UTC 2014


Author: bapt
Date: Tue Nov 25 22:17:31 2014
New Revision: 275082
URL: https://svnweb.freebsd.org/changeset/base/275082

Log:
  Register the explicit (pthread) and implicit (for static) dependencies for
  kerberos

Modified:
  head/share/mk/src.libnames.mk

Modified: head/share/mk/src.libnames.mk
==============================================================================
--- head/share/mk/src.libnames.mk	Tue Nov 25 22:16:43 2014	(r275081)
+++ head/share/mk/src.libnames.mk	Tue Nov 25 22:17:31 2014	(r275082)
@@ -217,7 +217,9 @@ _DP_pam+=	ssh
 .if ${MK_NIS} != "no"
 _DP_pam+=	ypclnt
 .endif
-_DP_krb5+=	asn1 com_err crypt crypto hx509 roken wind heimbase heimipcc
+_DP_krb5+=	asn1 com_err crypt crypto hx509 roken wind heimbase heimipcc \
+		pthread
+_DP_gssapi_krb5+=	gssapi krb5 crypto roken asn1 com_err
 
 # Define spacial cases
 LDADD_supcplusplus=	-lsupc++
@@ -259,6 +261,10 @@ DPADD_hdb+=	${DPADD_pthread}
 LDADD_hdb+=	${LDADD_pthread}
 DPADD_kadm5srv+=	${DPADD_pthread}
 LDADD_kadm5srv+=	${LDADD_pthread}
+DPADD_krb5+=	${DPADD_pthread}
+LDADD_krb5+=	${LDADD_pthread}
+DPADD_gssapi_krb5+=	${DPADD_pthread}
+LDADD_gssapi_krb5+=	${LDADD_pthread}
 
 .for _l in ${LIBADD}
 .if ${_PRIVATELIBS:M${_l}}


More information about the svn-src-all mailing list