mirror of
https://github.com/tmate-io/tmate.git
synced 2024-12-26 08:38:51 +01:00
On SUSE Linux compatibility is something that only happens to other people, so
on Linux use -lncurses instead of -lcurses. Also use -lncurses on NetBSD because they are only now realising that supporting the 20-year-old terminfo API in their libcurses might be nice, and so far none of the releases do.
This commit is contained in:
parent
5d13704e04
commit
3e46bcec93
20
configure
vendored
20
configure
vendored
@ -1,5 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $Id: configure,v 1.19 2009-07-31 10:30:40 nicm Exp $
|
# $Id: configure,v 1.20 2009-07-31 10:44:03 nicm Exp $
|
||||||
|
|
||||||
TMUX_PLATFORM=${TMUX_PLATFORM:-`uname -s`}
|
TMUX_PLATFORM=${TMUX_PLATFORM:-`uname -s`}
|
||||||
|
|
||||||
@ -58,8 +58,8 @@ case $TMUX_PLATFORM in
|
|||||||
#define HAVE_VIS
|
#define HAVE_VIS
|
||||||
EOF
|
EOF
|
||||||
cat <<EOF >>$CONFIG_MK
|
cat <<EOF >>$CONFIG_MK
|
||||||
|
LIBS+= -lcurses -lutil
|
||||||
SRCS+= osdep-openbsd.c
|
SRCS+= osdep-openbsd.c
|
||||||
LIBS+= -lutil
|
|
||||||
EOF
|
EOF
|
||||||
;;
|
;;
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
@ -75,6 +75,8 @@ EOF
|
|||||||
#define HAVE_STRCASESTR
|
#define HAVE_STRCASESTR
|
||||||
EOF
|
EOF
|
||||||
cat <<EOF >>$CONFIG_MK
|
cat <<EOF >>$CONFIG_MK
|
||||||
|
CFLAGS+= -std=c99 -D_GNU_SOURCE -D_POSIX_SOURCE
|
||||||
|
LIBS+= -lncurses -lcrypt -lutil
|
||||||
SRCS+= osdep-linux.c \
|
SRCS+= osdep-linux.c \
|
||||||
compat/fgetln.c \
|
compat/fgetln.c \
|
||||||
compat/strlcat.c \
|
compat/strlcat.c \
|
||||||
@ -82,8 +84,6 @@ SRCS+= osdep-linux.c \
|
|||||||
compat/strtonum.c \
|
compat/strtonum.c \
|
||||||
compat/getopt.c \
|
compat/getopt.c \
|
||||||
compat/vis.c
|
compat/vis.c
|
||||||
CFLAGS+= -std=c99 -D_GNU_SOURCE -D_POSIX_SOURCE
|
|
||||||
LIBS+= -lcrypt -lutil
|
|
||||||
EOF
|
EOF
|
||||||
;;
|
;;
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
@ -92,6 +92,7 @@ EOF
|
|||||||
#define HAVE_DAEMON
|
#define HAVE_DAEMON
|
||||||
EOF
|
EOF
|
||||||
cat <<EOF >>$CONFIG_MK
|
cat <<EOF >>$CONFIG_MK
|
||||||
|
LIBS+= -lcurses
|
||||||
SRCS+= osdep-unknown.c \
|
SRCS+= osdep-unknown.c \
|
||||||
compat/asprintf.c \
|
compat/asprintf.c \
|
||||||
compat/bsd-poll.c \
|
compat/bsd-poll.c \
|
||||||
@ -121,7 +122,7 @@ CPPFLAGS+= -I/usr/local/include/ncurses \
|
|||||||
LDFLAGS+= -L/usr/gnu/lib \
|
LDFLAGS+= -L/usr/gnu/lib \
|
||||||
-L/opt/csw/lib \
|
-L/opt/csw/lib \
|
||||||
-L/opt/sfw/lib
|
-L/opt/sfw/lib
|
||||||
LIBS+= -lsocket -lnsl
|
LIBS+= -lcurses -lsocket -lnsl
|
||||||
SRCS+= osdep-unknown.c \
|
SRCS+= osdep-unknown.c \
|
||||||
compat/asprintf.c \
|
compat/asprintf.c \
|
||||||
compat/daemon.c \
|
compat/daemon.c \
|
||||||
@ -149,6 +150,7 @@ EOF
|
|||||||
#define HAVE_UTIL_H
|
#define HAVE_UTIL_H
|
||||||
EOF
|
EOF
|
||||||
cat <<EOF >>$CONFIG_MK
|
cat <<EOF >>$CONFIG_MK
|
||||||
|
LIBS+= -lcurses
|
||||||
SRCS+= osdep-darwin.c \
|
SRCS+= osdep-darwin.c \
|
||||||
compat/bsd-poll.c \
|
compat/bsd-poll.c \
|
||||||
compat/strtonum.c \
|
compat/strtonum.c \
|
||||||
@ -174,9 +176,9 @@ EOF
|
|||||||
#define HAVE_STRTONUM
|
#define HAVE_STRTONUM
|
||||||
EOF
|
EOF
|
||||||
cat <<EOF >>$CONFIG_MK
|
cat <<EOF >>$CONFIG_MK
|
||||||
|
LIBS+= -lcurses -lcrypt -lutil
|
||||||
SRCS+= osdep-freebsd.c \
|
SRCS+= osdep-freebsd.c \
|
||||||
compat/vis.c
|
compat/vis.c
|
||||||
LIBS+= -lcrypt -lutil
|
|
||||||
EOF
|
EOF
|
||||||
;;
|
;;
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
@ -197,12 +199,12 @@ EOF
|
|||||||
#define HAVE_UTIL_H
|
#define HAVE_UTIL_H
|
||||||
EOF
|
EOF
|
||||||
cat <<EOF >>$CONFIG_MK
|
cat <<EOF >>$CONFIG_MK
|
||||||
|
CPPFLAGS+= -I/usr/pkg/include
|
||||||
|
LDFLAGS+= -L/usr/pkg/lib
|
||||||
|
LIBS+= -lncurses -lcrypt -lutil
|
||||||
SRCS+= osdep-netbsd.c \
|
SRCS+= osdep-netbsd.c \
|
||||||
compat/strtonum.c \
|
compat/strtonum.c \
|
||||||
compat/vis.c
|
compat/vis.c
|
||||||
LIBS+= -lcrypt -lutil
|
|
||||||
CPPFLAGS+= -I/usr/pkg/include
|
|
||||||
LDFLAGS+= -L/usr/pkg/lib
|
|
||||||
EOF
|
EOF
|
||||||
;;
|
;;
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user