diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2017-01-20 09:54:45 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2017-01-20 09:54:45 +0000 |
commit | e0efb9ebf89c0c6c6496dc7849a01f0ee941b706 (patch) | |
tree | 8dbc74a28a0b180cb461c142cd014fcee371d93d /usr.sbin/ldapctl | |
parent | d87e97bd90634a9cf2188a56dac0e41236199241 (diff) |
Correctly list all libraries required.
Diffstat (limited to 'usr.sbin/ldapctl')
-rw-r--r-- | usr.sbin/ldapctl/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ldapctl/Makefile b/usr.sbin/ldapctl/Makefile index 50befd74145..632a87c3873 100644 --- a/usr.sbin/ldapctl/Makefile +++ b/usr.sbin/ldapctl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 2016/05/01 10:40:27 tb Exp $ +# $OpenBSD: Makefile,v 1.7 2017/01/20 09:54:44 deraadt Exp $ .PATH: ${.CURDIR}/../ldapd @@ -7,8 +7,8 @@ MAN= ldapctl.8 SRCS= ldapctl.c parse.y btree.c log.c ber.c util.c \ index.c attributes.c schema.c syntax.c matching.c -LDADD= -ltls -levent -lz -lutil -DPADD= ${LIBTLS} ${LIBEVENT} ${LIBZ} ${LIBUTIL} +LDADD= -levent -ltls -lssl -lcrypto -lz -lutil +DPADD= ${LIBEVENT} ${LIBTLS} ${LIBSSL} ${LIBCRYPTO} ${LIBZ} ${LIBUTIL} CFLAGS+= -I${.CURDIR}/../ldapd CFLAGS+= -Wall -Wstrict-prototypes -Wmissing-prototypes CFLAGS+= -Wmissing-declarations |