svn commit: r275014 - head/share/mk
Baptiste Daroussin
bapt at FreeBSD.org
Tue Nov 25 07:13:32 UTC 2014
Author: bapt
Date: Tue Nov 25 07:13:31 2014
New Revision: 275014
URL: https://svnweb.freebsd.org/changeset/base/275014
Log:
Add definitions of kerberos libraries
Modified:
head/share/mk/src.libnames.mk
Modified: head/share/mk/src.libnames.mk
==============================================================================
--- head/share/mk/src.libnames.mk Tue Nov 25 07:12:32 2014 (r275013)
+++ head/share/mk/src.libnames.mk Tue Nov 25 07:13:31 2014 (r275014)
@@ -16,6 +16,7 @@ _PRIVATELIBS= \
atf_cxx \
bsdstat \
heimipcc \
+ heimipcs \
ldns \
sqlite3 \
ssh \
@@ -33,6 +34,7 @@ _INTERNALIBS= \
_LIBRARIES= \
${_PRIVATELIBS} \
${_INTERNALIBS} \
+ alias \
archive \
asn1 \
bsdxml \
@@ -58,11 +60,19 @@ _LIBRARIES= \
figpar \
geom \
gssapi \
+ hdb \
heimbase \
+ heimntlm \
+ heimsqlite \
hx509 \
ipsec \
jail \
+ kadm5clnt \
+ kadm5srv \
+ kafs5 \
+ kdc \
kiconv \
+ krb5 \
kvm \
krb5 \
l \
@@ -100,6 +110,7 @@ _LIBRARIES= \
ulog \
usb \
util \
+ vers \
wind \
wrap \
y \
@@ -191,6 +202,12 @@ LDADD_sqlite3+= ${LDADD_pthread}
DPADD_atf_cxx+= ${DPADD_atf_c}
LDADD_atf_cxx+= ${LDADD_atf_c}
+# The following depends on libraries which are using pthread
+DPADD_hdb+= ${DPADD_pthread}
+LDADD_hdb+= ${LDADD_pthread}
+DPADD_kadm5srv+= ${DPADD_pthread}
+LDADD_kadm5srv+= ${LDADD_pthread}
+
.for _l in ${LIBADD}
.if ${_PRIVATELIBS:M${_l}}
USEPRIVATELIB+= ${_l}
More information about the svn-src-all
mailing list