]> granicus.if.org Git - vim/commitdiff
patch 8.1.1008: MS-Windows: HAVE_STDINT_H only defined for non-debug version v8.1.1008
authorBram Moolenaar <Bram@vim.org>
Thu, 14 Mar 2019 20:37:19 +0000 (21:37 +0100)
committerBram Moolenaar <Bram@vim.org>
Thu, 14 Mar 2019 20:37:19 +0000 (21:37 +0100)
Problem:    MS-Windows: HAVE_STDINT_H only defined for non-debug version.
Solution:   Move definition of HAVE_STDINT_H up. (Taro Muraoka, closes #4109)

src/Make_mvc.mak
src/version.c

index 29d8b0eb428c4903b6346297692ea3cdbfa3e6ce..1df4de856609eab246441a645271dd107414722d 100644 (file)
@@ -626,6 +626,10 @@ CFLAGS = $(CFLAGS) /MP
 !endif
 !endif
 
+# VC10 or later has stdint.h.
+!if $(MSVC_MAJOR) >= 10
+CFLAGS = $(CFLAGS) -DHAVE_STDINT_H
+!endif
 
 !ifdef NODEBUG
 VIM = vim
@@ -649,11 +653,6 @@ OPTFLAG = $(OPTFLAG) /GL
 CFLAGS=$(CFLAGS) $(WP64CHECK)
 !endif
 
-# VC10 or later has stdint.h.
-!if $(MSVC_MAJOR) >= 10
-CFLAGS = $(CFLAGS) -DHAVE_STDINT_H
-!endif
-
 # Static code analysis generally available starting with VS2012 (VC11) or
 # Windows SDK 7.1 (VC10)
 !if ("$(ANALYZE)" == "yes") && ($(MSVC_MAJOR) >= 10)
index fb39cf5910d8be1550e81157c714cd537fb3d7e8..2f09e80281da3285932767b2af36ce8d1d95afbe 100644 (file)
@@ -779,6 +779,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1008,
 /**/
     1007,
 /**/