Skip to content

Commit

Permalink
aws-iot-securetunneling-localproxy: fix GCC 13 build
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-roos authored and web-flow committed Jan 8, 2024
1 parent b040d05 commit aa1d9d1
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ SRC_URI = "\
git://git@github.com/aws-samples/aws-iot-securetunneling-localproxy.git;branch=${BRANCH};protocol=https \
file://boost-support-any.patch \
file://gcc13.patch \
file://gcc13_2.patch \
file://run-ptest \
"
SRCREV = "f63f8fd6c7be216e484b066a8330df415a8600cf"
Expand Down
34 changes: 34 additions & 0 deletions recipes-iot/aws-iot-securetunneling-localproxy/files/gcc13_2.patch
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 {

0 comments on commit aa1d9d1

Please sign in to comment.