diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-18 20:33:47 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-18 20:33:47 +0000 |
commit | 50d5239ace422b80e9f10948b42ddd773810c8c4 (patch) | |
tree | f1591b29cc0bc0540d61fb8d69941f56905077de | |
parent | b7cefe4b6ea258ac4258d24c88746933432ab32d (diff) | |
download | rtmux-50d5239ace422b80e9f10948b42ddd773810c8c4.tar.gz rtmux-50d5239ace422b80e9f10948b42ddd773810c8c4.tar.bz2 rtmux-50d5239ace422b80e9f10948b42ddd773810c8c4.zip |
More Solaris bits
-rw-r--r-- | GNUmakefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile index eb7b5e93..8a6ae717 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,4 +1,4 @@ -# $Id: GNUmakefile,v 1.25 2008-06-18 20:12:19 nicm Exp $ +# $Id: GNUmakefile,v 1.26 2008-06-18 20:33:47 nicm Exp $ .PHONY: clean @@ -53,11 +53,12 @@ INSTALLMAN= install -g bin -o root -m 444 ifeq ($(shell uname),SunOS) INCDIRS+= -Icompat -SRCS+= compat/strtonum.c compat/daemon.c compat/forkpty-sunos.c +SRCS+= compat/strtonum.c compat/daemon.c compat/forkpty-sunos.c \ + compat/asprintf.c CFLAGS+= -DNO_STRTONUM -DNO_TREE_H -DNO_PATHS_H -DNO_SETPROCTITLE \ -DNO_DAEMON -DNO_FORKPTY -DNO_PROGNAME -DNO_ASPRINTF -LDFLAGS+= -L/opt/csw/lib -LIBS+= -lsocket -lnsl +# Not += since we don't want ncurses. +LIBS= -lsocket -lnsl -lcurses endif ifeq ($(shell uname),Darwin) |