forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1816 from microsoft/master
Merge from microsoft-master
- Loading branch information
Showing
59 changed files
with
549 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/include/concurrencpp/results/impl/shared_result_state.h b/include/concurrencpp/results/impl/shared_result_state.h | ||
index 6c96f4b..1433e74 100644 | ||
--- a/include/concurrencpp/results/impl/shared_result_state.h | ||
+++ b/include/concurrencpp/results/impl/shared_result_state.h | ||
@@ -5,6 +5,7 @@ | ||
#include "concurrencpp/results/impl/result_state.h" | ||
|
||
#include <atomic> | ||
+#include <chrono> | ||
#include <semaphore> | ||
|
||
#include <cassert> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/iceoryx_hoofs/platform/win/source/time.cpp b/iceoryx_hoofs/platform/win/source/time.cpp | ||
index 4c2ab2d..4a7074b 100644 | ||
--- a/iceoryx_hoofs/platform/win/source/time.cpp | ||
+++ b/iceoryx_hoofs/platform/win/source/time.cpp | ||
@@ -16,6 +16,7 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
#include "iceoryx_hoofs/platform/time.hpp" | ||
+#include <chrono> | ||
|
||
static std::chrono::nanoseconds getNanoSeconds(const timespec& value) | ||
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
From 2a1216b603b5eb592c5f313df9e79a81997ad13c Mon Sep 17 00:00:00 2001 | ||
From: Cosmin Mihai <ionut.cosmin.mihai@gmail.com> | ||
Date: Mon, 11 Nov 2024 22:43:30 +0200 | ||
Subject: [PATCH] iOS missing symbol fix | ||
|
||
--- | ||
build-aux/install-reloc | 1 + | ||
srclib/relocwrapper.c | 1 + | ||
srcm4/gnulib-comp.m4 | 2 ++ | ||
3 files changed, 4 insertions(+) | ||
|
||
diff --git a/build-aux/install-reloc b/build-aux/install-reloc | ||
index 63aeb9a..570b211 100755 | ||
--- a/build-aux/install-reloc | ||
+++ b/build-aux/install-reloc | ||
@@ -236,6 +236,7 @@ func_create_wrapper () | ||
"$srcdir"/allocator.c \ | ||
"$srcdir"/readlink.c \ | ||
"$srcdir"/stat.c \ | ||
+ "$srcdir"/stat-time.c \ | ||
"$srcdir"/canonicalize-lgpl.c \ | ||
"$srcdir"/malloc/scratch_buffer_dupfree.c \ | ||
"$srcdir"/malloc/scratch_buffer_grow.c \ | ||
diff --git a/srclib/relocwrapper.c b/srclib/relocwrapper.c | ||
index ff0ad41..0304e12 100644 | ||
--- a/srclib/relocwrapper.c | ||
+++ b/srclib/relocwrapper.c | ||
@@ -44,6 +44,7 @@ | ||
-> realloc-posix | ||
-> free-posix | ||
-> pathmax | ||
+ -> stat-time | ||
-> mempcpy | ||
-> rawmemchr | ||
-> readlink | ||
diff --git a/srcm4/gnulib-comp.m4 b/srcm4/gnulib-comp.m4 | ||
index b511e8a..832a8e7 100644 | ||
--- a/srcm4/gnulib-comp.m4 | ||
+++ b/srcm4/gnulib-comp.m4 | ||
@@ -730,6 +730,8 @@ AC_DEFUN([gl_FILE_LIST], [ | ||
lib/stat-w32.c | ||
lib/stat-w32.h | ||
lib/stat.c | ||
+ lib/stat-time.h | ||
+ lib/stat-time.c | ||
lib/stdalign.in.h | ||
lib/stdbool.in.h | ||
lib/stddef.in.h | ||
-- | ||
2.39.5 (Apple Git-154) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/src/common/transport/serialization_transport.cpp b/src/common/transport/serialization_transport.cpp | ||
index f916961..5ab0f3a 100644 | ||
--- a/src/common/transport/serialization_transport.cpp | ||
+++ b/src/common/transport/serialization_transport.cpp | ||
@@ -43,6 +43,7 @@ | ||
|
||
#include "ble_common.h" | ||
|
||
+#include <chrono> | ||
#include <iterator> | ||
#include <memory> | ||
#include <sstream> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/platform/c++11/platform.h b/platform/c++11/platform.h | ||
index 2c80e0b..1468fab 100644 | ||
--- a/platform/c++11/platform.h | ||
+++ b/platform/c++11/platform.h | ||
@@ -16,6 +16,7 @@ | ||
#define NSYNC_PLATFORM_CPP11_PLATFORM_H_ | ||
|
||
/* These C header files are in "C compatibility headers" in C++11. */ | ||
+#include <chrono> | ||
#include <string.h> | ||
#include <errno.h> | ||
#include <stdlib.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/src/ogdf/cluster/HananiTutteCPlanarity.cpp b/src/ogdf/cluster/HananiTutteCPlanarity.cpp | ||
index 2cec55b..ac2672e 100644 | ||
--- a/src/ogdf/cluster/HananiTutteCPlanarity.cpp | ||
+++ b/src/ogdf/cluster/HananiTutteCPlanarity.cpp | ||
@@ -37,6 +37,7 @@ | ||
#include <ogdf/basic/extended_graph_alg.h> | ||
#include <ogdf/cluster/CconnectClusterPlanar.h> | ||
#include <ogdf/cluster/ClusterPlanarity.h> | ||
+#include <chrono> | ||
#include <unordered_map> | ||
#include <map> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 0 additions & 40 deletions
40
ports/openal-soft/187ed2df39ab1f5ea92b97d4d3e0894da87e297b.patch
This file was deleted.
Oops, something went wrong.
89 changes: 0 additions & 89 deletions
89
ports/openal-soft/96f62e37e9ae015ee104e568cb57ea0d8964a84b.patch
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.