Skip to content

Commit

Permalink
patch 8.0.0130
Browse files Browse the repository at this point in the history
Problem:    Configure uses "ushort" while the Vim code doesn't.
Solution:   Use "unsigned short" instead. (Fredrik Fornwall, closes #1314)
  • Loading branch information
brammool committed Dec 9, 2016
1 parent 0df3c7f commit 63de19e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/auto/configure
Expand Up @@ -7411,7 +7411,7 @@ $as_echo_n "checking whether compiling with process communication is possible...
/* Check bitfields */ /* Check bitfields */
struct nbbuf { struct nbbuf {
unsigned int initDone:1; unsigned int initDone:1;
ushort signmaplen; unsigned short signmaplen;
}; };
int int
Expand Down Expand Up @@ -12000,8 +12000,8 @@ if test "x$vim_cv_getcwd_broken" = "xyes" ; then


fi fi


for ac_func in bcmp fchdir fchown fsync getcwd getpseudotty \ for ac_func in fchdir fchown fsync getcwd getpseudotty \
getpwent getpwnam getpwuid getrlimit gettimeofday getwd lstat memcmp \ getpwent getpwnam getpwuid getrlimit gettimeofday getwd lstat \
memset mkdtemp nanosleep opendir putenv qsort readlink select setenv \ memset mkdtemp nanosleep opendir putenv qsort readlink select setenv \
setpgid setsid sigaltstack sigstack sigset sigsetjmp sigaction \ setpgid setsid sigaltstack sigstack sigset sigsetjmp sigaction \
sigprocmask sigvec strcasecmp strerror strftime stricmp strncasecmp \ sigprocmask sigvec strcasecmp strerror strftime stricmp strncasecmp \
Expand Down
2 changes: 1 addition & 1 deletion src/configure.ac
Expand Up @@ -1995,7 +1995,7 @@ if test "$enable_channel" = "yes"; then
/* Check bitfields */ /* Check bitfields */
struct nbbuf { struct nbbuf {
unsigned int initDone:1; unsigned int initDone:1;
ushort signmaplen; unsigned short signmaplen;
}; };
], [ ], [
/* Check creating a socket. */ /* Check creating a socket. */
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -764,6 +764,8 @@ static char *(features[]) =


static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
130,
/**/ /**/
129, 129,
/**/ /**/
Expand Down

0 comments on commit 63de19e

Please sign in to comment.