diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2012-11-23 15:25:48 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2012-11-23 15:25:48 +0000 |
commit | ad38f526107cbde277d1e1b79a68cdf750d3a82b (patch) | |
tree | 0856a05aa853b84cfe43a7570c7286339dd9b898 /distrib | |
parent | 2fb2bc6cf7b24abcc414b59bc87563ff3bed3ea3 (diff) |
Use the libutil imsg framework rather than a hand-rolled local
version. This is the last hand-rolled imsg implementation I could
spot. Doesn't seem to break sparc64.
Suggested by chris@, tweaks from brad@ and reyk@.
ok reyk@
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/special/dhclient/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/distrib/special/dhclient/Makefile b/distrib/special/dhclient/Makefile index fc5a3014d75..e8cc7af8524 100644 --- a/distrib/special/dhclient/Makefile +++ b/distrib/special/dhclient/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.12 2012/11/09 18:51:56 krw Exp $ +# $OpenBSD: Makefile,v 1.13 2012/11/23 15:25:47 krw Exp $ .include <bsd.own.mk> @@ -10,6 +10,8 @@ SRCS= dhclient.c clparse.c dispatch.c bpf.c options.c \ conflex.c errwarn.c kroute.c packet.c convert.c \ tables.c parse.c privsep.c PROG= dhclient +LDADD+= -lutil +DPADD+= ${LIBUTIL} .include <bsd.prog.mk> .include <bsd.subdir.mk> |