aboutsummaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2010-02-26 09:41:16 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2010-02-26 09:41:16 +0000
commitc59ee18a21806fa0b69457f81988615e6119d795 (patch)
tree8eb3d2832697fff768756673ff76ad3b8b33d2ea /libexec
parent28889a00222fef96768b9b0375273344d8ac5303 (diff)
downloadsrc-c59ee18a21806fa0b69457f81988615e6119d795.tar.gz
src-c59ee18a21806fa0b69457f81988615e6119d795.zip
Fixed static linkage.
Notes
Notes: svn path=/head/; revision=204352
Diffstat (limited to 'libexec')
-rw-r--r--libexec/rpc.rstatd/Makefile4
-rw-r--r--libexec/ulog-helper/Makefile4
2 files changed, 4 insertions, 4 deletions
diff --git a/libexec/rpc.rstatd/Makefile b/libexec/rpc.rstatd/Makefile
index d1a12eaec5f0..a42225f9e1ca 100644
--- a/libexec/rpc.rstatd/Makefile
+++ b/libexec/rpc.rstatd/Makefile
@@ -4,8 +4,8 @@ PROG = rpc.rstatd
SRCS = rstatd.c rstat_proc.c
MAN = rpc.rstatd.8
-DPADD= ${LIBRPCSVC} ${LIBUTIL} ${LIBDEVSTAT}
-LDADD= -lrpcsvc -lutil -ldevstat
+DPADD= ${LIBRPCSVC} ${LIBUTIL} ${LIBDEVSTAT} ${LIBKVM}
+LDADD= -lrpcsvc -lutil -ldevstat -lkvm
WARNS?= 1
diff --git a/libexec/ulog-helper/Makefile b/libexec/ulog-helper/Makefile
index c1697c8fd12c..3c1770cc51c7 100644
--- a/libexec/ulog-helper/Makefile
+++ b/libexec/ulog-helper/Makefile
@@ -5,7 +5,7 @@ BINOWN= root
BINMODE=4555
NO_MAN=
-DPADD= ${LIBULOG}
-LDADD= -lulog
+DPADD= ${LIBULOG} ${LIBMD}
+LDADD= -lulog -lmd
.include <bsd.prog.mk>