]> git.pld-linux.org Git - packages/vim.git/blob - vim-speed_t.patch
one glob more (fix missing menu.vim problem)
[packages/vim.git] / vim-speed_t.patch
1 --- vim-4.2/src/term.c.sopwith  Sun Jun 16 14:02:56 1996
2 +++ vim-4.2/src/term.c  Sun Jul  7 19:37:05 1996
3 @@ -30,7 +30,8 @@
4  
5  #ifdef HAVE_TGETENT
6  # ifdef HAVE_TERMCAP_H
7 -#  include <termcap.h>
8 +#include <termios.h>
9 +#include <ncurses/termcap.h>
10  # endif
11  
12  /*
13 @@ -96,9 +97,11 @@
14   */
15  # ifndef HAVE_OSPEED
16  #  ifdef OSPEED_EXTERN
17 -extern short ospeed;
18 +/* extern short ospeed; */
19 +extern speed_t ospeed;
20  #   else
21 -short ospeed;
22 +/* short ospeed; */
23 +speed_t ospeed;
24  #   endif
25  # endif
26  # ifndef HAVE_UP_BC_PC
This page took 0.025109 seconds and 3 git commands to generate.