From c1318f71256ffde36e1451677146daf63e793b49 Mon Sep 17 00:00:00 2001 From: "Scott J. Goldman" Date: Sat, 26 May 2012 18:16:13 -0700 Subject: [PATCH] Use lowercase names for Windows headers Otherwise we can't cross-compile on Linux. --- src/netops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/netops.c b/src/netops.c index 4d461a049..e16cae8e6 100644 --- a/src/netops.c +++ b/src/netops.c @@ -12,9 +12,9 @@ # include #else # include -# include +# include # ifdef _MSC_VER -# pragma comment(lib, "Ws2_32.lib") +# pragma comment(lib, "ws2_32.lib") # endif #endif