Mark Brand | 18 Jun 2012 13:15
Picon

[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)

Mark Brand | 18 Jun 2012 13:35
Picon

[PATCH] fix case of winsock2.h which matters when cross-building (corrected)

The previous version of this patch emailed a few minutes ago missed a 
case. Sorry about that.

Mark

 From 14fbb400e7bfd95d0108a083cd8c0aadb1edd3a9 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   |    4 ++--
  src/web/TimeUtil.C         |    2 +-
  4 files changed, 5 insertions(+), 5 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

(Continue reading)

Wim Dumon | 18 Jun 2012 13:54
Picon
Favicon

Re: [PATCH] fix case of winsock2.h which matters when cross-building (corrected)

Ok, will be applied

Wim.

2012/6/18 Mark Brand <mabrand@...>:
> The previous version of this patch emailed a few minutes ago missed a case.
> Sorry about that.
>
> Mark
>
> From 14fbb400e7bfd95d0108a083cd8c0aadb1edd3a9 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   |    4 ++--
>  src/web/TimeUtil.C         |    2 +-
>  4 files changed, 5 insertions(+), 5 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
(Continue reading)


Gmane