From bd2fe4ce9b7c723ab2c55b98287e6cacf591a86a Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Sun, 9 Aug 2009 15:53:02 +0000 Subject: [PATCH] Make it build on the remaining operating systems, due to the changes introduced on OpenBSD patchset 211. --- configure | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/configure b/configure index 2ae523c8..33f478a9 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #!/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`} @@ -83,7 +83,8 @@ SRCS+= osdep-linux.c \ compat/strlcpy.c \ compat/strtonum.c \ compat/getopt.c \ - compat/vis.c + compat/vis.c \ + compat/unvis.c EOF ;; # ------------------------------------------------------------------------------ @@ -104,7 +105,8 @@ SRCS+= osdep-unknown.c \ compat/strtonum.c \ compat/fgetln.c \ compat/getopt.c \ - compat/vis.c + compat/vis.c \ + compat/unvis.c EOF ;; # ------------------------------------------------------------------------------ @@ -131,7 +133,8 @@ SRCS+= osdep-unknown.c \ compat/getopt.c \ compat/strcasestr.c \ compat/strtonum.c \ - compat/vis.c + compat/vis.c \ + compat/unvis.c EOF ;; # ------------------------------------------------------------------------------ @@ -154,7 +157,8 @@ LIBS+= -lcurses SRCS+= osdep-darwin.c \ compat/bsd-poll.c \ compat/strtonum.c \ - compat/vis.c + compat/vis.c \ + compat/unvis.c EOF ;; # ------------------------------------------------------------------------------