Index: head/usr.sbin/ngctl/Makefile =================================================================== --- head/usr.sbin/ngctl/Makefile (revision 349996) +++ head/usr.sbin/ngctl/Makefile (revision 349997) @@ -1,27 +1,19 @@ # $FreeBSD$ # $Whistle: Makefile,v 1.3 1999/01/16 00:10:11 archie Exp $ .include PROG= ngctl MAN= ngctl.8 SRCS= main.c mkpeer.c config.c connect.c dot.c name.c show.c list.c \ msg.c debug.c shutdown.c rmhook.c status.c types.c write.c WARNS?= 3 -.if defined(RELEASE_CRUNCH) -NGCTL_NO_LIBEDIT= -.endif - -.if ${MK_LIBTHR} == "no" -NGCTL_NO_LIBEDIT= -.endif - LIBADD= netgraph -.if !defined(NGCTL_NO_LIBEDIT) +.if ${MK_LIBTHR} != "no" CFLAGS+= -DEDITLINE LIBADD+= edit pthread .endif .include