From 70a099f7bd2b958a85339ed7cf0bbb9179adb6b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 Dec 2022 19:18:49 +0000 Subject: [PATCH 1/3] Bump third-party/miniupnp from `6f848ae` to `207cf44` Bumps [third-party/miniupnp](https://github.com/miniupnp/miniupnp) from `6f848ae` to `207cf44`. - [Release notes](https://github.com/miniupnp/miniupnp/releases) - [Commits](https://github.com/miniupnp/miniupnp/compare/6f848ae0821f1dd1be393edb52115f36812d3c2c...207cf440a22c075cb55fb067a850be4f9c204e6e) --- updated-dependencies: - dependency-name: third-party/miniupnp dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- third-party/miniupnp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third-party/miniupnp b/third-party/miniupnp index 6f848ae0821..207cf440a22 160000 --- a/third-party/miniupnp +++ b/third-party/miniupnp @@ -1 +1 @@ -Subproject commit 6f848ae0821f1dd1be393edb52115f36812d3c2c +Subproject commit 207cf440a22c075cb55fb067a850be4f9c204e6e From 7dfa946b1357420d846552b0a5a0679b76eb7fc4 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Thu, 15 Dec 2022 14:22:43 -0500 Subject: [PATCH 2/3] change include_directories for `miniupnp` submodule --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fad60ef5e16..035ae69b9ae 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -58,7 +58,7 @@ set(UPNPC_BUILD_TESTS OFF CACHE BOOL "Don't build tests for miniupnpc") set(UPNPC_BUILD_SAMPLE OFF CACHE BOOL "Don't build samples for miniupnpc") set(UPNPC_NO_INSTALL ON CACHE BOOL "Don't install any libraries build for miniupnpc") add_subdirectory(third-party/miniupnp/miniupnpc) -include_directories(third-party/miniupnp) +include_directories(third-party/miniupnp/miniupnpc/include) find_package(Threads REQUIRED) find_package(OpenSSL REQUIRED) From d779b2a3504892310f33ab24a5e5f57339be679e Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Thu, 15 Dec 2022 14:23:31 -0500 Subject: [PATCH 3/3] update include paths for `miniupnp` submodule --- src/upnp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/upnp.cpp b/src/upnp.cpp index a5a99e86fe1..03aedd51606 100644 --- a/src/upnp.cpp +++ b/src/upnp.cpp @@ -1,5 +1,5 @@ -#include -#include +#include +#include #include "config.h" #include "confighttp.h"