diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1997-03-14 03:40:35 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1997-03-14 03:40:35 +0000 |
commit | a40e528c1e272d022f99f555d417a4a1bcdb9e73 (patch) | |
tree | 8a1ddc55420d9c0a5653bc54ef4147f9f2485462 /usr.sbin/named/dig/Makefile | |
parent | 0754fde2039f3a8ebbfa3d89108a5c2c5b1ecaf1 (diff) |
Switch to linking with the resolver in libc.
Pull a few of our changes into this resolver; don't delete it yet. I'm
not entirely sure it should be deleted, simply because of the baseline
it provides against our massivelt modified libc resolver.
Diffstat (limited to 'usr.sbin/named/dig/Makefile')
-rw-r--r-- | usr.sbin/named/dig/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/named/dig/Makefile b/usr.sbin/named/dig/Makefile index a44e6404c8b..a85b88cf6e1 100644 --- a/usr.sbin/named/dig/Makefile +++ b/usr.sbin/named/dig/Makefile @@ -1,13 +1,13 @@ -# $OpenBSD: Makefile,v 1.3 1997/03/12 10:41:48 downsj Exp $ +# $OpenBSD: Makefile,v 1.4 1997/03/14 03:40:32 downsj Exp $ # $NetBSD: Makefile,v 1.2 1996/03/31 13:55:34 mrg Exp $ # from: $Id: Makefile,v 8.1 1994/12/15 06:23:45 vixie Exp .PATH: ${.CURDIR}/../nslookup \ - ${.CURDIR}/../libresolv \ + ${.CURDIR}/../../../lib/libc/net \ ${.CURDIR}/../man PROG= dig -SRCS= dig.c list.c subr.c debug.c send.c base64.c gethnamaddr.c res_comp.c \ +SRCS= dig.c list.c subr.c debug.c send.c base64.c gethostnamadr.c res_comp.c \ res_debug.c res_init.c res_mkquery.c res_query.c res_send.c \ inet_ntop.c inet_pton.c CFLAGS+=${INCLUDE} ${CONFIG} -DDEBUG |