summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ldapd/Makefile
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2010-06-06 17:49:56 +0000
committermiod <miod@openbsd.org>2010-06-06 17:49:56 +0000
commit8a24c8abbbe583942b0e204332b616e43bfcb436 (patch)
tree7e168ca67427e3d7e0b6c16a7277ad84d8acc3ae /usr.sbin/ldapd/Makefile
parentBack out rev. 1.2 which breakes the .hw roff instruction, (diff)
downloadwireguard-openbsd-8a24c8abbbe583942b0e204332b616e43bfcb436.tar.xz
wireguard-openbsd-8a24c8abbbe583942b0e204332b616e43bfcb436.zip
Fix LDADD component order to let this build on static arches.
Diffstat (limited to 'usr.sbin/ldapd/Makefile')
-rw-r--r--usr.sbin/ldapd/Makefile4
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