boost: remove unneeded patch "Fixed case sensetive for linux mingw"

> Currently boost-1-fixes.patch contain my patch: boostorg/interprocess#23
> This patch is not necessary, because BOOST_USE_WINDOWS_H not defined:
>
> #ifdef BOOST_USE_WINDOWS_H
> #include <windows.h>
>
> #  if defined(BOOST_INTERPROCESS_BOOTSTAMP_IS_LASTBOOTUPTIME)
> #  include <Wbemidl.h>
> #  include <Objbase.h>
> #  endif
>
> #include <Shlobj.h>
> #endif
>
> so case sensitivity for headers is irrelevant. Previously pull
> boostorg/interprocess#15 is obsolete for boost-1.60.

https://github.com/mxe/mxe/issues/1104#issuecomment-167437968
This commit is contained in:
Boris Nagaev 2015-12-28 01:45:19 +03:00
parent 56bee8297b
commit 4b3d71ae76
1 changed files with 0 additions and 27 deletions

View File

@ -1,33 +1,6 @@
This file is part of MXE.
See index.html for further information.
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Pavel Vatagin <pavelvat@gmail.com>
Date: Wed, 23 Dec 2015 20:50:12 +0300
Subject: [PATCH] Fixed case sensetive for linux mingw
taken from: https://github.com/boostorg/interprocess/pull/23
diff --git a/include/boost/interprocess/detail/win32_api.hpp b/include/boost/interprocess/detail/win32_api.hpp
index 1111111..2222222 100644
--- a/boost/interprocess/detail/win32_api.hpp
+++ b/boost/interprocess/detail/win32_api.hpp
@@ -35,11 +35,11 @@
#include <windows.h>
# if defined(BOOST_INTERPROCESS_BOOTSTAMP_IS_LASTBOOTUPTIME)
-# include <Wbemidl.h>
-# include <Objbase.h>
+# include <wbemidl.h>
+# include <objbase.h>
# endif
-#include <Shlobj.h>
+#include <shlobj.h>
#endif
#if defined(_MSC_VER)
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: xantares <xantares09@hotmail.com>
Date: Mon, 28 Sep 2015 08:21:42 +0000