diff options
author | Martin Hedenfal <martinh@cvs.openbsd.org> | 2010-06-29 16:25:42 +0000 |
---|---|---|
committer | Martin Hedenfal <martinh@cvs.openbsd.org> | 2010-06-29 16:25:42 +0000 |
commit | 1ed6e9cfcea3a61394a15bffa818853ef153e52b (patch) | |
tree | e1291091bdc4ed7e32c83e27bd1fccbb08ec526e | |
parent | d909d71b3beb955924b0408aa10cfa78ac916422 (diff) |
Add the new schema parser.
noticed by deraadt, sorry!
-rw-r--r-- | usr.sbin/ldapctl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ldapctl/Makefile b/usr.sbin/ldapctl/Makefile index 3423763c87d..e31f027c473 100644 --- a/usr.sbin/ldapctl/Makefile +++ b/usr.sbin/ldapctl/Makefile @@ -1,11 +1,11 @@ -# $OpenBSD: Makefile,v 1.2 2010/06/23 13:31:30 martinh Exp $ +# $OpenBSD: Makefile,v 1.3 2010/06/29 16:25:41 martinh Exp $ .PATH: ${.CURDIR}/../ldapd PROG= ldapctl MAN= ldapctl.8 SRCS= ldapctl.c parse.y btree.c log.c ber.c util.c \ - index.c attributes.c + index.c attributes.c schema.c LDADD= -levent -lcrypto -lz -lutil DPADD= ${LIBEVENT} ${LIBCRYPTO} ${LIBZ} ${LIBUTIL} |