summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-04-29 22:25:20 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-04-29 22:25:20 +0000
commitcc9cc1aea8694dec3067246d4483bb3c2860592e (patch)
tree852e36aecb8ebaae8b3b114b9abeecf61d5adfc3 /Makefile
parent323b7cbfbea012ab9358b639c089012a84552bc6 (diff)
Some tweaks for Solaris.
Get rid of vis.* in favour of a small replacement function.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index b07befe7..651c9d84 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.125 2009-04-27 18:10:10 nicm Exp $
+# $Id: Makefile,v 1.126 2009-04-29 22:25:20 nicm Exp $
.SUFFIXES: .c .o .y .h
.PHONY: clean update-index.html upload-index.html
@@ -84,7 +84,6 @@ LIBS+= -lutil -lncurses
# FreeBSD and DragonFly
.if ${OS} == "FreeBSD" || ${OS} == "DragonFly"
INCDIRS+= -Icompat
-SRCS+= compat/vis.c
CFLAGS+= -DUSE_LIBUTIL_H -DNO_QUEUE_H -DNO_TREE_H
LIBS+= -lcrypt
.endif
@@ -92,7 +91,7 @@ LIBS+= -lcrypt
# NetBSD
.if ${OS} == "NetBSD"
INCDIRS+= -Icompat
-SRCS+= compat/strtonum.c compat/vis.c
+SRCS+= compat/strtonum.c
LIBS+= -lcrypt
CFLAGS+=-DNO_STRTONUM -DNO_QUEUE_H
.endif