1
0
forked from aniani/vim

patch 8.1.1008: MS-Windows: HAVE_STDINT_H only defined for non-debug version

Problem:    MS-Windows: HAVE_STDINT_H only defined for non-debug version.
Solution:   Move definition of HAVE_STDINT_H up. (Taro Muraoka, closes #4109)
This commit is contained in:
Bram Moolenaar
2019-03-14 21:37:19 +01:00
parent 209b8e3e3b
commit 0251d2d811
2 changed files with 6 additions and 5 deletions

View 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)