-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
aws-iot-securetunneling-localproxy: fix GCC 13 build
- Loading branch information
1 parent
ae854c7
commit f99652d
Showing
3 changed files
with
37 additions
and
33 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
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
34 changes: 34 additions & 0 deletions
34
recipes-iot/aws-iot-securetunneling-localproxy/files/gcc13_2.patch
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,34 @@ | ||
|
||
Upstream-Status: Pending -> https://github.com/aws-samples/aws-iot-securetunneling-localproxy/pull/136 | ||
|
||
Index: git/src/Url.cpp | ||
=================================================================== | ||
--- git.orig/src/Url.cpp | ||
+++ git/src/Url.cpp | ||
@@ -5,6 +5,7 @@ | ||
#include <algorithm> | ||
#include <cctype> | ||
#include <functional> | ||
+#include <cstdint> | ||
|
||
#include <boost/log/core.hpp> | ||
#include <boost/log/trivial.hpp> | ||
@@ -106,4 +107,4 @@ string aws::iot::securedtunneling::url:: | ||
} | ||
return out; | ||
} | ||
-} | ||
\ No newline at end of file | ||
+} | ||
Index: git/src/Url.h | ||
=================================================================== | ||
--- git.orig/src/Url.h | ||
+++ git/src/Url.h | ||
@@ -3,6 +3,7 @@ | ||
#pragma once | ||
|
||
#include <string> | ||
+#include <cstdint> | ||
namespace aws { | ||
namespace iot { | ||
namespace securedtunneling { |