aboutsummaryrefslogtreecommitdiff
path: root/ports/folly/fixC2338.patch
diff options
context:
space:
mode:
authorLarry-Hu <v-daih@microsoft.com>2018-07-02 22:55:57 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2018-07-03 15:12:45 -0700
commita300dfcc3a55aff2a321a0157231cc230c06c23f (patch)
treebed9508ac155e8d90fcda907be91c18e9582db33 /ports/folly/fixC2338.patch
parent4ebdbe7e88ad93423e9d0d75eb066ecf8ab5fcad (diff)
downloadvcpkg-a300dfcc3a55aff2a321a0157231cc230c06c23f.tar.gz
vcpkg-a300dfcc3a55aff2a321a0157231cc230c06c23f.zip
Remove patch and update tp latest folly release v2018.07.02.00
Diffstat (limited to 'ports/folly/fixC2338.patch')
-rw-r--r--ports/folly/fixC2338.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/ports/folly/fixC2338.patch b/ports/folly/fixC2338.patch
deleted file mode 100644
index 2a40e4f89..000000000
--- a/ports/folly/fixC2338.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/CMake/FollyCompilerMSVC.cmake b/CMake/FollyCompilerMSVC.cmake
-index 0b97bfd..e442c73 100644
---- a/CMake/FollyCompilerMSVC.cmake
-+++ b/CMake/FollyCompilerMSVC.cmake
-@@ -268,7 +268,7 @@ function(apply_folly_compile_options_to_target THETARGET)
- _CRT_NONSTDC_NO_WARNINGS # Don't deprecate posix names of functions.
- _CRT_SECURE_NO_WARNINGS # Don't deprecate the non _s versions of various standard library functions, because safety is for chumps.
- _SCL_SECURE_NO_WARNINGS # Don't deprecate the non _s versions of various standard library functions, because safety is for chumps.
--
-+ _DISABLE_EXTENDED_ALIGNED_STORAGE
- _STL_EXTRA_DISABLED_WARNINGS=4774\ 4987
-
- $<$<BOOL:${MSVC_ENABLE_CPP_LATEST}>:_HAS_AUTO_PTR_ETC=1> # We're building in C++ 17 or greater mode, but certain dependencies (Boost) still have dependencies on unary_function and binary_function, so we have to make sure not to remove them.