From 0eba6be1b8d37fa368a45795ba350d46cc86df54 Mon Sep 17 00:00:00 2001
From: Andrew Dunstan <andrew@dunslane.net>
Date: Sat, 15 Apr 2017 09:47:36 -0400
Subject: [PATCH] Downcase "Wincrypt.h"

This is consistent with how we refer to other Windows include files, and
prevents a failure when cross-compiling on a system with case sensitive
file names.
---
 src/port/pg_strong_random.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/port/pg_strong_random.c b/src/port/pg_strong_random.c
index ac5c5d5df5c..c6ee5ea1d46 100644
--- a/src/port/pg_strong_random.c
+++ b/src/port/pg_strong_random.c
@@ -28,7 +28,7 @@
 #include <openssl/rand.h>
 #endif
 #ifdef WIN32
-#include <Wincrypt.h>
+#include <wincrypt.h>
 #endif
 
 #ifdef WIN32
-- 
GitLab