diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2018-07-30 17:42:51 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-07-30 22:14:39 +0200 |
commit | b4d991d1a2e2f5da6d3f08d82d1fa9ef45605e07 (patch) | |
tree | 245b456268e0d6ea0b487e8858e0fd980bb55c00 /config.mak.uname | |
parent | cache.h: extract enum declaration from inside a struct declaration (diff) | |
download | git-b4d991d1a2e2f5da6d3f08d82d1fa9ef45605e07.tar.xz git-b4d991d1a2e2f5da6d3f08d82d1fa9ef45605e07.zip |
mingw: define WIN32 explicitly
This helps VS Code's intellisense to figure out that we want to include
windows.h, and that we want to define the minimum target Windows version
as Windows Vista/2008R2.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'config.mak.uname')
-rw-r--r-- | config.mak.uname | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.mak.uname b/config.mak.uname index 684fc5bf02..2be2f19811 100644 --- a/config.mak.uname +++ b/config.mak.uname @@ -528,7 +528,7 @@ ifneq (,$(findstring MINGW,$(uname_S))) COMPAT_OBJS += compat/mingw.o compat/winansi.o \ compat/win32/pthread.o compat/win32/syslog.o \ compat/win32/dirent.o - BASIC_CFLAGS += -DPROTECT_NTFS_DEFAULT=1 + BASIC_CFLAGS += -DWIN32 -DPROTECT_NTFS_DEFAULT=1 EXTLIBS += -lws2_32 GITLIBS += git.res PTHREAD_LIBS = |