Browse Source
The vim configure script had a bug which caused the channel support to be disabled. Patch this while awaiting a fix merged upstream. Fixes #577.android-5
Fredrik Fornwall
8 years ago
4 changed files with 30 additions and 2 deletions
@ -0,0 +1,14 @@ |
|||||
|
Submitted upstream at https://github.com/vim/vim/pull/1314 |
||||
|
|
||||
|
diff -u -r ../vim-8.0.0104/src/auto/configure ./src/auto/configure
|
||||
|
--- ../vim-8.0.0104/src/auto/configure 2016-11-26 11:45:53.000000000 -0500
|
||||
|
+++ ./src/auto/configure 2016-12-07 21:36:01.937616265 -0500
|
||||
|
@@ -7411,7 +7411,7 @@
|
||||
|
/* Check bitfields */ |
||||
|
struct nbbuf { |
||||
|
unsigned int initDone:1; |
||||
|
- ushort signmaplen;
|
||||
|
+ unsigned short signmaplen;
|
||||
|
}; |
||||
|
|
||||
|
int |
@ -0,0 +1,14 @@ |
|||||
|
Submitted upstream at https://github.com/vim/vim/pull/1314 |
||||
|
|
||||
|
diff -u -r ../vim-8.0.0104/src/auto/configure ./src/auto/configure
|
||||
|
--- ../vim-8.0.0104/src/auto/configure 2016-11-26 11:45:53.000000000 -0500
|
||||
|
+++ ./src/auto/configure 2016-12-07 21:36:01.937616265 -0500
|
||||
|
@@ -7411,7 +7411,7 @@
|
||||
|
/* Check bitfields */ |
||||
|
struct nbbuf { |
||||
|
unsigned int initDone:1; |
||||
|
- ushort signmaplen;
|
||||
|
+ unsigned short signmaplen;
|
||||
|
}; |
||||
|
|
||||
|
int |
Loading…
Reference in new issue