From 3fd9d3347e19fde360bf57dd95ef831db9e7a3f4 Mon Sep 17 00:00:00 2001 From: mrg Date: Sun, 31 Mar 1996 13:55:34 +0000 Subject: [PATCH] use local copy of resolver, with -DDEBUG. fixes pr#2275 (ken hornstein) --- usr.sbin/named/dig/Makefile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/usr.sbin/named/dig/Makefile b/usr.sbin/named/dig/Makefile index 4c8e492136d5..c16b9a6dfbdc 100644 --- a/usr.sbin/named/dig/Makefile +++ b/usr.sbin/named/dig/Makefile @@ -1,12 +1,14 @@ -# $NetBSD: Makefile,v 1.1 1996/02/02 15:26:15 mrg 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}/../man + ${.CURDIR}/../man \ + ${.CURDIR}/../../../lib/libc/net PROG= dig -SRCS= dig.c list.c subr.c debug.c send.c -CFLAGS+= -I${.CURDIR}/.. +SRCS= dig.c list.c subr.c debug.c send.c gethostnamadr.c res_init.c \ + res_mkquery.c res_query.c res_send.c +CFLAGS+= -I${.CURDIR}/.. -DDEBUG .include .include "../../Makefile.inc"