diff options
| author | Michael I. Bushnell | 1996-07-07 23:51:01 +0000 |
|---|---|---|
| committer | Michael I. Bushnell | 1996-07-07 23:51:01 +0000 |
| commit | 2abc0cca8884def527557395f1660eb72e82914c (patch) | |
| tree | 0582a8b3aaa34fbd65c78681d21ec922521cef77 /src | |
| parent | 0d7ed720123a8df22d6a690efdb98976d14c82b5 (diff) | |
| download | emacs-2abc0cca8884def527557395f1660eb72e82914c.tar.gz emacs-2abc0cca8884def527557395f1660eb72e82914c.zip | |
Enable use of ncurses library cleanly.
Diffstat (limited to 'src')
| -rw-r--r-- | src/s/gnu.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/s/gnu.h b/src/s/gnu.h index f90fe399e46..67c818848e6 100644 --- a/src/s/gnu.h +++ b/src/s/gnu.h | |||
| @@ -42,6 +42,12 @@ Boston, MA 02111-1307, USA. */ | |||
| 42 | #define TABDLY OXTABS | 42 | #define TABDLY OXTABS |
| 43 | #define TAB3 OXTABS | 43 | #define TAB3 OXTABS |
| 44 | 44 | ||
| 45 | /* Tell Emacs that we are a terminfo based system; disable the use | ||
| 46 | of local termcap. (GNU uses ncurses.) */ | ||
| 47 | #ifdef HAVE_LIBNCURSES | ||
| 48 | #define TERMINFO | ||
| 49 | #define LIBS_TERMCAP -lncurses | ||
| 50 | #endif | ||
| 45 | 51 | ||
| 46 | #define SYSV_SYSTEM_DIR | 52 | #define SYSV_SYSTEM_DIR |
| 47 | 53 | ||