summaryrefslogtreecommitdiff
path: root/compat
diff options
context:
space:
mode:
authorMark Levedahl <mlevedahl@gmail.com>2012-11-18 21:16:52 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-11-19 04:02:40 (GMT)
commit9fca6cffc05321445b59c91e8f8d308f41588b53 (patch)
tree274ddf208872d3305b16f877ab6f536420b48ea6 /compat
parent380a4d927bff693c42fc6b22c3547bdcaac4bdc3 (diff)
downloadgit-9fca6cffc05321445b59c91e8f8d308f41588b53.zip
git-9fca6cffc05321445b59c91e8f8d308f41588b53.tar.gz
git-9fca6cffc05321445b59c91e8f8d308f41588b53.tar.bz2
USE CGYWIN_V15_WIN32API as macro to select api for cygwin
The previous macro was confusing to some, and did not include "cygwin" in its name. The updated name more clearly expresses a choice of the win32api implementation that shipped with version 1.5 of cygwin. Signed-off-by: Mark Levedahl <mlevedahl@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'compat')
-rw-r--r--compat/cygwin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/cygwin.c b/compat/cygwin.c
index 59d86e4..5428858 100644
--- a/compat/cygwin.c
+++ b/compat/cygwin.c
@@ -1,5 +1,5 @@
#define WIN32_LEAN_AND_MEAN
-#ifdef V15_MINGW_HEADERS
+#ifdef CYGWIN_V15_WIN32API
#include "../git-compat-util.h"
#include "win32.h"
#else