From: David Rhodus Date: Sun, 18 Apr 2004 00:15:35 +0000 (+0000) Subject: Define that Dragonfly HAS isblank() as to fix the X-Git-Tag: v2.0.1~11490 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/3dfc25aadb078ce5df44c1d7290c87e3c1db3372 Define that Dragonfly HAS isblank() as to fix the buildworld process. Before awk checked for isblank not being defined. --- diff --git a/usr.bin/awk/Makefile b/usr.bin/awk/Makefile index d1b4591ff8..fc47f104aa 100644 --- a/usr.bin/awk/Makefile +++ b/usr.bin/awk/Makefile @@ -1,5 +1,5 @@ # $FreeBSD: src/usr.bin/awk/Makefile,v 1.9.2.1 2002/06/21 20:12:08 obrien Exp $ -# $DragonFly: src/usr.bin/awk/Makefile,v 1.5 2004/04/17 19:42:15 eirikn Exp $ +# $DragonFly: src/usr.bin/awk/Makefile,v 1.6 2004/04/18 00:15:35 drhodus Exp $ AWKSRC= ${.CURDIR}/../../contrib/awk20040207 .PATH: ${AWKSRC} @@ -7,7 +7,7 @@ AWKSRC= ${.CURDIR}/../../contrib/awk20040207 PROG= awk SRCS= awkgram.y b.c lex.c lib.c main.c parse.c proctab.c run.c tran.c ytab.h -CFLAGS+= -I. -I${AWKSRC} +CFLAGS+= -I. -I${AWKSRC} -DHAS_ISBLANK DPADD= ${LIBM} LDADD= -lm