From 982c62305a636f056ac62727e479a62dc9cb271d Mon Sep 17 00:00:00 2001 From: yar Date: Thu, 27 Jul 2006 14:20:14 +0000 Subject: Obey MK_INET6_SUPPORT. --- usr.bin/ftp/Makefile | 8 +++++++- usr.bin/logger/Makefile | 7 ++++++- usr.bin/systat/Makefile | 13 ++++++++++--- 3 files changed, 23 insertions(+), 5 deletions(-) (limited to 'usr.bin') diff --git a/usr.bin/ftp/Makefile b/usr.bin/ftp/Makefile index 25d30d4..c2fe59c 100644 --- a/usr.bin/ftp/Makefile +++ b/usr.bin/ftp/Makefile @@ -2,6 +2,8 @@ # $NetBSD: Makefile,v 1.15 1997/10/18 15:31:20 lukem Exp $ # from: @(#)Makefile 8.2 (Berkeley) 4/3/94 +.include + # Uncomment the following to provide defaults for gate-ftp operation # #CFLAGS+=-DGATE_SERVER=\"ftp-gw.host\" # -DGATE_PORT=21 @@ -13,7 +15,11 @@ PROG= ftp SRCS= cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c progressbar.c \ ruserpass.c util.c -CFLAGS+=-I${.CURDIR} -I${LUKEMFTP} -DINET6 +.if ${MK_INET6_SUPPORT} != "no" +CFLAGS+= -DINET6 +.endif + +CFLAGS+= -I${.CURDIR} -I${LUKEMFTP} LDADD= -ledit -ltermcap -lutil DPADD= ${LIBEDIT} ${LIBTERMCAP} ${LIBUTIL} diff --git a/usr.bin/logger/Makefile b/usr.bin/logger/Makefile index 48c5251..922192c 100644 --- a/usr.bin/logger/Makefile +++ b/usr.bin/logger/Makefile @@ -1,7 +1,12 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 # $FreeBSD$ +.include + PROG= logger -CFLAGS+=-DINET6 + +.if ${MK_INET6_SUPPORT} != "no" +CFLAGS+= -DINET6 +.endif .include diff --git a/usr.bin/systat/Makefile b/usr.bin/systat/Makefile index 3cd09f4..4f5f229 100644 --- a/usr.bin/systat/Makefile +++ b/usr.bin/systat/Makefile @@ -1,12 +1,19 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 # $FreeBSD$ +.include + PROG= systat SRCS= cmds.c cmdtab.c devs.c fetch.c iostat.c keyboard.c main.c \ - mbufs.c netcmds.c netstat.c pigs.c swap.c icmp.c icmp6.c \ - mode.c ip.c ip6.c tcp.c \ + mbufs.c netcmds.c netstat.c pigs.c swap.c icmp.c \ + mode.c ip.c tcp.c \ vmstat.c convtbl.c ifcmds.c ifstat.c -CFLAGS+=-DINET6 + +.if ${MK_INET6_SUPPORT} != "no" +SRCS+= icmp6.c ip6.c +CFLAGS+= -DINET6 +.endif + DPADD= ${LIBCURSES} ${LIBM} ${LIBDEVSTAT} ${LIBKVM} LDADD= -lcurses -lm -ldevstat -lkvm -- cgit v1.1