From f71b3054cd0111625ef8bf933517a08f07833e06 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 31 Dec 2010 22:12:33 +0000 Subject: Switch tmux to use autoconf and automake. Although they suck, they suck less than the alternatives. --- tty-term.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tty-term.c') diff --git a/tty-term.c b/tty-term.c index df93768f..6520048d 100644 --- a/tty-term.c +++ b/tty-term.c @@ -1,4 +1,4 @@ -/* $Id: tty-term.c,v 1.43 2010-09-18 15:43:53 tcunha Exp $ */ +/* $Id: tty-term.c,v 1.44 2010-12-31 22:12:33 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott @@ -18,10 +18,10 @@ #include -#ifdef HAVE_BROKEN_CURSES_H -#include -#else +#ifdef HAVE_CURSES_H #include +#else +#include #endif #include #include -- cgit