diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2010-06-06 17:49:57 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2010-06-06 17:49:57 +0000 |
commit | 36ea4eab29f3eb96ba81db5cfda6b12e28fe5cea (patch) | |
tree | 5d3a7adf7b4f0941d55dfb71f728038588f366e8 | |
parent | 89b0ce39868873ecd34ad18f0e3e44a0dfaf84d9 (diff) |
Fix LDADD component order to let this build on static arches.
-rw-r--r-- | usr.sbin/ldapd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ldapd/Makefile b/usr.sbin/ldapd/Makefile index 519c6648ded..c67863c181e 100644 --- a/usr.sbin/ldapd/Makefile +++ b/usr.sbin/ldapd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 2010/06/05 17:29:14 martinh Exp $ +# $OpenBSD: Makefile,v 1.4 2010/06/06 17:49:56 miod Exp $ PROG= ldapd MAN= ldapd.8 ldapd.conf.5 @@ -8,7 +8,7 @@ SRCS= ber.c log.c control.c \ auth.c modify.c index.c ssl.c ssl_privsep.c compact.c \ validate.c uuid.c -LDADD= -levent -lcrypto -lssl -lz -lutil +LDADD= -levent -lssl -lcrypto -lz -lutil DPADD= ${LIBEVENT} ${LIBCRYPTO} ${LIBSSL} ${LIBZ} ${LIBUTIL} CFLAGS+= -I${.CURDIR} CFLAGS+= -Wall -Wstrict-prototypes -Wmissing-prototypes |