diff options
| author | Eli Zaretskii | 2010-03-12 11:34:27 -0500 |
|---|---|---|
| committer | Eli Zaretskii | 2010-03-12 11:34:27 -0500 |
| commit | 6da23aaa4fff0063dd880aee9c45544bd2488029 (patch) | |
| tree | ae9a34e6d76768cfdf4b10fdb644bfffd937241d /src/cm.c | |
| parent | 92e0131af775092ff889fb12969c06b728324f3b (diff) | |
| download | emacs-6da23aaa4fff0063dd880aee9c45544bd2488029.tar.gz emacs-6da23aaa4fff0063dd880aee9c45544bd2488029.zip | |
Don't use termcap.c on Posix platforms, only on MS-DOS.
configure.in <AC_CHECK_HEADERS>: Remove termcap.h.
configure: Regenerated.
src/Makefilie.in (termcapobj): Move termcap.o from here...
(MSDOS_OBJ): ...to here.
(termcapobj) [!LIBS_TERMCAP]: Remove specialized value, as it is
now identical to when LIBS_TERMCAP is defined.
src/term.c: Remove (ifdef'ed away) inclusion of termcap.h.
src/cm.c: Remove (ifdef'ed away) inclusion of termcap.h.
src/config.in: Regenerated.
Diffstat (limited to 'src/cm.c')
| -rw-r--r-- | src/cm.c | 5 |
1 files changed, 0 insertions, 5 deletions
| @@ -33,13 +33,8 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 33 | /* For now, don't try to include termcap.h. On some systems, | 33 | /* For now, don't try to include termcap.h. On some systems, |
| 34 | configure finds a non-standard termcap.h that the main build | 34 | configure finds a non-standard termcap.h that the main build |
| 35 | won't find. */ | 35 | won't find. */ |
| 36 | |||
| 37 | #if defined HAVE_TERMCAP_H && 0 | ||
| 38 | #include <termcap.h> | ||
| 39 | #else | ||
| 40 | extern void tputs P_ ((const char *, int, int (*)(int))); | 36 | extern void tputs P_ ((const char *, int, int (*)(int))); |
| 41 | extern char *tgoto P_ ((const char *, int, int)); | 37 | extern char *tgoto P_ ((const char *, int, int)); |
| 42 | #endif | ||
| 43 | 38 | ||
| 44 | #define BIG 9999 /* 9999 good on VAXen. For 16 bit machines | 39 | #define BIG 9999 /* 9999 good on VAXen. For 16 bit machines |
| 45 | use about 2000.... */ | 40 | use about 2000.... */ |