? config.log ? config.h ? config.cache ? config.status ? stamp-h ? Makefile ? cscope.out ? cscope.patch ? doc/Makefile ? src/Makefile ? src/scanner.c ? src/egrep.h ? src/egrep.c ? src/cscope Index: src/command.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/command.c,v retrieving revision 1.5 diff -u -r1.5 command.c --- src/command.c 2000/05/05 17:35:00 1.5 +++ src/command.c 2000/05/16 02:02:55 @@ -37,7 +37,11 @@ #include "global.h" #include -#include /* KEY_.* */ +#if defined(USE_NCURSES) && !defined(RENAMED_NCURSES) +#include +#else +#include +#endif #include /* O_RDONLY */ #include Index: src/display.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/display.c,v retrieving revision 1.7 diff -u -r1.7 display.c --- src/display.c 2000/05/05 17:35:00 1.7 +++ src/display.c 2000/05/16 02:02:56 @@ -41,7 +41,11 @@ #else #include "version.h" /* FILEVERSION and FIXVERSION */ #endif -#include /* LINES, COLS */ +#if defined(USE_NCURSES) && !defined(RENAMED_NCURSES) +#include +#else +#include +#endif #include /* jmp_buf */ #include /* va_list stuff */ #include Index: src/edit.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/edit.c,v retrieving revision 1.2 diff -u -r1.2 edit.c --- src/edit.c 2000/05/03 22:02:10 1.2 +++ src/edit.c 2000/05/16 02:02:57 @@ -35,8 +35,12 @@ * file editing functions */ -#include #include "global.h" +#if defined(USE_NCURSES) && !defined(RENAMED_NCURSES) +#include +#else +#include +#endif static char const rcsid[] = "$Id: edit.c,v 1.2 2000/05/03 22:02:10 petr Exp $"; Index: src/exec.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/exec.c,v retrieving revision 1.2 diff -u -r1.2 exec.c --- src/exec.c 2000/05/03 22:02:10 1.2 +++ src/exec.c 2000/05/16 02:02:57 @@ -40,7 +40,11 @@ #include #include #include /* pid_t */ +#if defined(USE_NCURSES) && !defined(RENAMED_NCURSES) +#include +#else #include +#endif static char const rcsid[] = "$Id: exec.c,v 1.2 2000/05/03 22:02:10 petr Exp $"; Index: src/find.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/find.c,v retrieving revision 1.5 diff -u -r1.5 find.c --- src/find.c 2000/05/04 19:06:06 1.5 +++ src/find.c 2000/05/16 02:02:59 @@ -36,7 +36,11 @@ */ #include "global.h" +#if defined(USE_NCURSES) && !defined(RENAMED_NCURSES) +#include +#else #include +#endif #include static char const rcsid[] = "$Id: find.c,v 1.5 2000/05/04 19:06:06 petr Exp $"; Index: src/help.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/help.c,v retrieving revision 1.1 diff -u -r1.1 help.c --- src/help.c 2000/04/27 16:33:47 1.1 +++ src/help.c 2000/05/16 02:03:00 @@ -37,7 +37,11 @@ */ #include "global.h" -#include /* LINES needed by constants.h */ +#if defined(USE_NCURSES) && !defined(RENAMED_NCURSES) +#include +#else +#include +#endif /* max num of lines of help screen - this number needs to be increased if more than n help items are needed Index: src/input.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/input.c,v retrieving revision 1.3 diff -u -r1.3 input.c --- src/input.c 2000/05/03 22:02:10 1.3 +++ src/input.c 2000/05/16 02:03:01 @@ -36,7 +36,11 @@ */ #include "global.h" +#if defined(USE_NCURSES) && !defined(RENAMED_NCURSES) +#include +#else #include +#endif #include /* jmp_buf */ #include Index: src/main.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/main.c,v retrieving revision 1.7 diff -u -r1.7 main.c --- src/main.c 2000/05/05 17:35:00 1.7 +++ src/main.c 2000/05/16 02:03:05 @@ -39,7 +39,11 @@ #include "global.h" #include "version.h" /* FILEVERSION and FIXVERSION */ #include /* atoi */ -#include /* stdscr and TRUE */ +#if defined(USE_NCURSES) && !defined(RENAMED_NCURSES) +#include +#else +#include +#endif #include /* O_RDONLY */ #include /* needed by stat.h */ #include /* stat */