mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-01 00:32:04 +08:00
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
From e49b1832387f3d7e170fb2aa5b5022205ff50053 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Jean-Micha=C3=ABl=20Celerier?=
|
|
<jeanmichael.celerier+github@gmail.com>
|
|
Date: Fri, 11 Sep 2020 00:26:15 +0200
|
|
Subject: [PATCH] Fix build on windows with libc++ (#106)
|
|
|
|
Proposed by @SquallATF in #67
|
|
---
|
|
include/boost/iostreams/detail/config/fpos.hpp | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/include/boost/iostreams/detail/config/fpos.hpp b/include/boost/iostreams/detail/config/fpos.hpp
|
|
index c5dc6cf..a583542 100644
|
|
--- a/include/boost/iostreams/detail/config/fpos.hpp
|
|
+++ b/include/boost/iostreams/detail/config/fpos.hpp
|
|
@@ -26,7 +26,8 @@
|
|
|
|
# if (defined(_YVALS) || defined(_CPPLIB_VER)) && !defined(__SGI_STL_PORT) && \
|
|
!defined(_STLPORT_VERSION) && !defined(__QNX__) && !defined(_VX_CPU) && !defined(__VXWORKS__) \
|
|
- && !((defined(BOOST_MSVC) || defined(BOOST_CLANG)) && _MSVC_STL_VERSION >= 141)
|
|
+ && !((defined(BOOST_MSVC) || defined(BOOST_CLANG)) && _MSVC_STL_VERSION >= 141) \
|
|
+ && !defined(_LIBCPP_VERSION)
|
|
/**/
|
|
|
|
#include <boost/iostreams/detail/ios.hpp>
|
|
--
|
|
2.22.0.windows.1
|
|
|