diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2010-12-31 22:12:33 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2010-12-31 22:12:33 +0000 |
commit | f71b3054cd0111625ef8bf933517a08f07833e06 (patch) | |
tree | 46e71dcebc6f9fc8de494966acf87ad2020b2f37 /tty-term.c | |
parent | 60dd44008229506043ae61d602e89b90306ccfe5 (diff) | |
download | rtmux-f71b3054cd0111625ef8bf933517a08f07833e06.tar.gz rtmux-f71b3054cd0111625ef8bf933517a08f07833e06.tar.bz2 rtmux-f71b3054cd0111625ef8bf933517a08f07833e06.zip |
Switch tmux to use autoconf and automake.
Although they suck, they suck less than the alternatives.
Diffstat (limited to 'tty-term.c')
-rw-r--r-- | tty-term.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 <nicm@users.sourceforge.net> @@ -18,10 +18,10 @@ #include <sys/types.h> -#ifdef HAVE_BROKEN_CURSES_H -#include <ncurses.h> -#else +#ifdef HAVE_CURSES_H #include <curses.h> +#else +#include <ncurses.h> #endif #include <fnmatch.h> #include <stdlib.h> |