diff options
| author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-18 20:58:03 +0000 |
|---|---|---|
| committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-18 20:58:03 +0000 |
| commit | 9b0ff4cfc02d5fb5be03d66aba9720971bbf55e2 (patch) | |
| tree | 8e41a0ab0396f4dbfe566b07c0c01cbad1af721b /GNUmakefile | |
| parent | 50d5239ace422b80e9f10948b42ddd773810c8c4 (diff) | |
| download | rtmux-9b0ff4cfc02d5fb5be03d66aba9720971bbf55e2.tar.gz rtmux-9b0ff4cfc02d5fb5be03d66aba9720971bbf55e2.tar.bz2 rtmux-9b0ff4cfc02d5fb5be03d66aba9720971bbf55e2.zip | |
More Solaris stuff. Use ttyname, use ncurses,h.
Diffstat (limited to 'GNUmakefile')
| -rw-r--r-- | GNUmakefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile index 8a6ae717..5316126b 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,4 +1,4 @@ -# $Id: GNUmakefile,v 1.26 2008-06-18 20:33:47 nicm Exp $ +# $Id: GNUmakefile,v 1.27 2008-06-18 20:58:03 nicm Exp $ .PHONY: clean @@ -52,13 +52,13 @@ INSTALLBIN= install -g bin -o root -m 555 INSTALLMAN= install -g bin -o root -m 444 ifeq ($(shell uname),SunOS) -INCDIRS+= -Icompat +INCDIRS+= -Icompat -I/usr/local/include/ncurses 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 -# Not += since we don't want ncurses. -LIBS= -lsocket -lnsl -lcurses +LDFLAGS+= -L/usr/local/lib +LIBS+= -lsocket -lnsl endif ifeq ($(shell uname),Darwin) |