summaryrefslogtreecommitdiff
path: root/usr.sbin/ldapd/Makefile
diff options
context:
space:
mode:
authorJonathan Matthew <jmatthew@cvs.openbsd.org>2016-05-01 00:32:38 +0000
committerJonathan Matthew <jmatthew@cvs.openbsd.org>2016-05-01 00:32:38 +0000
commit344e69804391bf056890fd0fd4c077645230f565 (patch)
tree5171ee19b2630895ee269bad7a2f3042d037ddf4 /usr.sbin/ldapd/Makefile
parentf92aaf9e63830deb6f727004e6d0e1eba5d420de (diff)
convert ldapd to use the libtls api, bringing in a copy of the evbuffer_tls
code from syslogd. ok beck@ benno@
Diffstat (limited to 'usr.sbin/ldapd/Makefile')
-rw-r--r--usr.sbin/ldapd/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/ldapd/Makefile b/usr.sbin/ldapd/Makefile
index d35945bbef8..5d2aea00428 100644
--- a/usr.sbin/ldapd/Makefile
+++ b/usr.sbin/ldapd/Makefile
@@ -1,15 +1,15 @@
-# $OpenBSD: Makefile,v 1.12 2014/07/16 20:07:03 okan Exp $
+# $OpenBSD: Makefile,v 1.13 2016/05/01 00:32:37 jmatthew Exp $
PROG= ldapd
MAN= ldapd.8 ldapd.conf.5
SRCS= ber.c log.c control.c \
util.c ldapd.c ldape.c conn.c attributes.c namespace.c \
btree.c filter.c search.c parse.y \
- auth.c modify.c index.c ssl.c ssl_privsep.c \
+ auth.c modify.c index.c evbuffer_tls.c \
validate.c uuid.c schema.c imsgev.c syntax.c matching.c
-LDADD= -levent -lssl -lcrypto -lz -lutil
-DPADD= ${LIBEVENT} ${LIBCRYPTO} ${LIBSSL} ${LIBZ} ${LIBUTIL}
+LDADD= -ltls -levent -lz -lutil
+DPADD= ${LIBEVENT} ${LIBTLS} ${LIBCRYPTO} ${LIBSSL} ${LIBZ} ${LIBUTIL}
CFLAGS+= -I${.CURDIR} -g
CFLAGS+= -Wall -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations