aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-05-14 19:49:26 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-05-14 19:49:26 +0000
commit8913d853e45735442c3b59a7b608525f980eed68 (patch)
tree5c5d1aa0c56483e9f813ba7dfc60ce27bf5c2af6
parentcba338ac138331b42f2cfd741f4137329751555c (diff)
downloadrtmux-8913d853e45735442c3b59a7b608525f980eed68.tar.gz
rtmux-8913d853e45735442c3b59a7b608525f980eed68.tar.bz2
rtmux-8913d853e45735442c3b59a7b608525f980eed68.zip
+sfw for solaris too.
-rw-r--r--TODO1
-rwxr-xr-xconfigure9
2 files changed, 6 insertions, 4 deletions
diff --git a/TODO b/TODO
index 112f4e67..7e302335 100644
--- a/TODO
+++ b/TODO
@@ -67,7 +67,6 @@
to avoid quoting
(hopefully) for 0.9, in no particular order:
-- paste-buffer into command prompt
- a command to display the status line briefly when it is turned off
- FAQ "Can I have some examples of cool things I can do with tmux?" -- linkw,
more??
diff --git a/configure b/configure
index 0c062728..68416212 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#!/bin/sh
-# $Id: configure,v 1.9 2009-05-14 07:49:23 nicm Exp $
+# $Id: configure,v 1.10 2009-05-14 19:49:26 nicm Exp $
UNAME=`uname -s`
@@ -88,8 +88,11 @@ EOF
EOF
cat <<EOF >>$CONFIG_MK
CPPFLAGS+= -I/usr/local/include/ncurses \
- -I/opt/csw/include -I/opt/csw/include/ncurses
-LDFLAGS+= -L/usr/gnu/lib -L/opt/csw/lib
+ -I/opt/csw/include -I/opt/csw/include/ncurses \
+ -I/opt/sfw/include -I/opt/sfw/include/ncurses
+LDFLAGS+= -L/usr/gnu/lib \
+ -L/opt/csw/lib \
+ -L/opt/sfw/lib
LIBS+= -lsocket -lnsl
SRCS+= osdep-unknown.c \
compat/asprintf.c \