18 Jun 2012 13:15
[PATCH] fix case of winsock2.h which matters when cross-building
From dd1d10afeb4cd79f97452271f91f959357fc7fbb Mon Sep 17 00:00:00 2001 From: Mark Brand <mabrand@...> Date: Mon, 18 Jun 2012 13:02:03 +0200 Subject: [PATCH] fix case of winsock2.h which matters when cross-building --- src/Wt/Auth/HashFunction.C | 2 +- src/Wt/Utils.C | 2 +- src/http/Configuration.C | 2 +- src/web/TimeUtil.C | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Wt/Auth/HashFunction.C b/src/Wt/Auth/HashFunction.C index 6d764fa..34615e0 100644 --- a/src/Wt/Auth/HashFunction.C +++ b/src/Wt/Auth/HashFunction.C <at> <at> -15,7 +15,7 <at> <at> #ifndef WIN32 #include <arpa/inet.h> #else -#include <Winsock2.h> +#include <winsock2.h> #endif #endif diff --git a/src/Wt/Utils.C b/src/Wt/Utils.C index 02cdf7d..75fca49 100644 --- a/src/Wt/Utils.C +++ b/src/Wt/Utils.C <at> <at> -13,7 +13,7 <at> <at>(Continue reading)
RSS Feed