diff options
author | rob <rob@cvs.openbsd.org> | 2019-05-11 17:46:03 +0000 |
---|---|---|
committer | rob <rob@cvs.openbsd.org> | 2019-05-11 17:46:03 +0000 |
commit | 4f7eb64fd01586ea3d3953ab8aaa43cf0d210eac (patch) | |
tree | 60fde55cb10de0afc2300cccdadb97ed8ead0889 /usr.sbin/ypldap/Makefile | |
parent | 6fc532963fda2a46e6fd21a3e4456223286cded9 (diff) |
The BER API is currently used by ldap, ldapd, ldapctl, ypldap, snmpd, and
snmpctl. Separate copies of ber.[ch] have existed and been maintained in sync
in ldap, ldapd, ypldap and snmpd.
This commit moves the BER API into /usr/lib/libutil. All current consumers
already link libutil. ldapd and snmpd regress passes, and release builds.
With help from tb@ and guenther@.
ok deraadt@, tb@
Diffstat (limited to 'usr.sbin/ypldap/Makefile')
-rw-r--r-- | usr.sbin/ypldap/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ypldap/Makefile b/usr.sbin/ypldap/Makefile index 12a286ffbee..c106d0032fe 100644 --- a/usr.sbin/ypldap/Makefile +++ b/usr.sbin/ypldap/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.10 2017/07/03 22:21:47 espie Exp $ +# $OpenBSD: Makefile,v 1.11 2019/05/11 17:46:02 rob Exp $ PROG= ypldap SRCS= parse.y ypldap.c log.c \ ldapclient.c entries.c yp.c \ - aldap.c ber.c \ + aldap.c \ ypldap_dns.c MAN= ypldap.8 ypldap.conf.5 |