From cf77c80b935da2a822acdc4694cc3bdbcf7021f6 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 19 Oct 2007 20:47:09 +0000 Subject: FreeBSD's util.h is libutil.h. --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 38312c75..5d24cfa6 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.28 2007-10-19 11:10:34 nicm Exp $ +# $Id: Makefile,v 1.29 2007-10-19 20:47:09 nicm Exp $ .SUFFIXES: .c .o .y .h .PHONY: clean @@ -55,6 +55,11 @@ LDFLAGS+= -pg .endif LIBS+= -lutil -lncurses +# FreeBSD +.if ${OS} == "FreeBSD" +CFLAGS+= -DUSE_LIBUTIL_H +.endif + OBJS= ${SRCS:S/.c/.o/:S/.y/.o/} CLEANFILES= ${PROG} *.o .depend *~ ${PROG}.core *.log -- cgit