Skip to content

Commit

Permalink
updated for version 7.3.101
Browse files Browse the repository at this point in the history
Problem:    ino_t defined with wrong size.
Solution:   Move including auto/config.h before other includes. (Marius
	    Geminas)
  • Loading branch information
brammool committed Jan 17, 2011
1 parent b434a90 commit f2cfab9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 2 additions & 3 deletions src/if_lua.c
Expand Up @@ -9,12 +9,11 @@
* See README.txt for an overview of the Vim source code.
*/

#include <stdio.h>
#include <string.h>
#include "vim.h"

#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>
#include "vim.h"

/* Only do the following when the feature is enabled. Needed for "make
* depend". */
Expand Down
6 changes: 3 additions & 3 deletions src/if_ruby.c
Expand Up @@ -11,13 +11,13 @@
* See README.txt for an overview of the Vim source code.
*/

#include <stdio.h>
#include <string.h>

#ifdef HAVE_CONFIG_H
# include "auto/config.h"
#endif

#include <stdio.h>
#include <string.h>

#ifdef _WIN32
# if !defined(DYNAMIC_RUBY_VER) || (DYNAMIC_RUBY_VER < 18)
# define NT
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -714,6 +714,8 @@ static char *(features[]) =

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

0 comments on commit f2cfab9

Please sign in to comment.