1
0
mirror of https://github.com/tmate-io/tmate-ssh-server.git synced 2020-11-18 19:53:51 -08:00

Make it build on the remaining operating systems, due to the changes

introduced on OpenBSD patchset 211.
This commit is contained in:
Tiago Cunha 2009-08-09 15:53:02 +00:00
parent e6d5633671
commit bd2fe4ce9b

14
configure vendored
View File

@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
# $Id: configure,v 1.21 2009-08-09 15:48:03 tcunha Exp $ # $Id: configure,v 1.22 2009-08-09 15:53:02 tcunha Exp $
TMUX_PLATFORM=${TMUX_PLATFORM:-`uname -s`} TMUX_PLATFORM=${TMUX_PLATFORM:-`uname -s`}
@ -83,7 +83,8 @@ SRCS+= osdep-linux.c \
compat/strlcpy.c \ compat/strlcpy.c \
compat/strtonum.c \ compat/strtonum.c \
compat/getopt.c \ compat/getopt.c \
compat/vis.c compat/vis.c \
compat/unvis.c
EOF EOF
;; ;;
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
@ -104,7 +105,8 @@ SRCS+= osdep-unknown.c \
compat/strtonum.c \ compat/strtonum.c \
compat/fgetln.c \ compat/fgetln.c \
compat/getopt.c \ compat/getopt.c \
compat/vis.c compat/vis.c \
compat/unvis.c
EOF EOF
;; ;;
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
@ -131,7 +133,8 @@ SRCS+= osdep-unknown.c \
compat/getopt.c \ compat/getopt.c \
compat/strcasestr.c \ compat/strcasestr.c \
compat/strtonum.c \ compat/strtonum.c \
compat/vis.c compat/vis.c \
compat/unvis.c
EOF EOF
;; ;;
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
@ -154,7 +157,8 @@ LIBS+= -lcurses
SRCS+= osdep-darwin.c \ SRCS+= osdep-darwin.c \
compat/bsd-poll.c \ compat/bsd-poll.c \
compat/strtonum.c \ compat/strtonum.c \
compat/vis.c compat/vis.c \
compat/unvis.c
EOF EOF
;; ;;
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------