diff options
author | Stephen Hines <srhines@google.com> | 2014-10-31 01:44:58 -0700 |
---|---|---|
committer | Stephen Hines <srhines@google.com> | 2014-10-31 01:44:58 -0700 |
commit | b6426fc192e01338f9983c8c9943515af191afd6 (patch) | |
tree | 917e4d648770d282d30786b64e3c0d2e4d57c157 /host | |
parent | a7f357148de9be178f55725575c70ce9a888d81c (diff) | |
download | external_llvm-b6426fc192e01338f9983c8c9943515af191afd6.zip external_llvm-b6426fc192e01338f9983c8c9943515af191afd6.tar.gz external_llvm-b6426fc192e01338f9983c8c9943515af191afd6.tar.bz2 |
Add color support for Clang!
Bug: 18187181
We were missing the HAVE_TERMINFO define, as well as proper linkage against
ncurses to enable this.
Change-Id: I985e1720fadbce4e20ec3608e7d5f0f67d1a74e9
Diffstat (limited to 'host')
-rw-r--r-- | host/include/llvm/Config/config.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/host/include/llvm/Config/config.h b/host/include/llvm/Config/config.h index 42115e4..8135848 100644 --- a/host/include/llvm/Config/config.h +++ b/host/include/llvm/Config/config.h @@ -472,6 +472,9 @@ /* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */ #define HAVE_SYS_WAIT_H 1 +/* Define if the setupterm() function is supported this platform. */ +#define HAVE_TERMINFO 1 + /* Define to 1 if you have the <termios.h> header file. */ #define HAVE_TERMIOS_H 1 |