summaryrefslogtreecommitdiff
path: root/usr.sbin/ldpd/Makefile
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2010-05-26 16:44:34 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2010-05-26 16:44:34 +0000
commit8a9f9cc67e1e3472ccceed3d2505c63b277bdd68 (patch)
treec6046cf42d49b7baf27899e7f5784c755a55f6ec /usr.sbin/ldpd/Makefile
parent0f31cd36b18a4e846125940b5fbdb71a8d33b5aa (diff)
Move imsg into libutil and add a man page.
Minor bump for libutil. Previous versions of this diff and man page looked at by various people. "you should just commit" deraadt
Diffstat (limited to 'usr.sbin/ldpd/Makefile')
-rw-r--r--usr.sbin/ldpd/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/ldpd/Makefile b/usr.sbin/ldpd/Makefile
index f011dc8d548..f03dfc97829 100644
--- a/usr.sbin/ldpd/Makefile
+++ b/usr.sbin/ldpd/Makefile
@@ -1,7 +1,7 @@
-# $OpenBSD: Makefile,v 1.2 2010/05/25 13:29:45 claudio Exp $
+# $OpenBSD: Makefile,v 1.3 2010/05/26 16:44:32 nicm Exp $
PROG= ldpd
-SRCS= address.c buffer.c control.c hello.c imsg.c init.c interface.c \
+SRCS= address.c control.c hello.c init.c interface.c \
keepalive.c kroute.c labelmapping.c lde.c lde_lib.c ldpd.c ldpe.c \
log.c neighbor.c notification.c packet.c parse.y printconf.c
@@ -13,7 +13,7 @@ CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare
YFLAGS=
-LDADD+= -levent
-DPADD+= ${LIBEVENT}
+LDADD+= -levent -lutil
+DPADD+= ${LIBEVENT} ${LIBUTIL}
.include <bsd.prog.mk>