diff -Nru pcsx2-1.6.0+dfsg/debian/changelog pcsx2-1.6.0+dfsg/debian/changelog --- pcsx2-1.6.0+dfsg/debian/changelog 2023-01-20 13:32:19.000000000 +0000 +++ pcsx2-1.6.0+dfsg/debian/changelog 2024-01-04 10:59:09.000000000 +0000 @@ -1,3 +1,10 @@ +pcsx2 (1.6.0+dfsg-2ubuntu1) noble; urgency=medium + + * d/p/cpp_error_ftbfs.patch: + Fix FTBFS by adding missing include for std::*_error types + + -- Mate Kukri Thu, 04 Jan 2024 10:59:09 +0000 + pcsx2 (1.6.0+dfsg-2build1) lunar; urgency=medium * No-change rebuild against wxwidgets 3.2.1 diff -Nru pcsx2-1.6.0+dfsg/debian/control pcsx2-1.6.0+dfsg/debian/control --- pcsx2-1.6.0+dfsg/debian/control 2022-10-23 16:00:12.000000000 +0100 +++ pcsx2-1.6.0+dfsg/debian/control 2024-01-04 10:59:09.000000000 +0000 @@ -1,7 +1,8 @@ Source: pcsx2 Section: games Priority: optional -Maintainer: Debian Games Team +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Debian Games Team Uploaders: Miguel A. Colón Vélez Build-Depends: diff -Nru pcsx2-1.6.0+dfsg/debian/patches/cpp_error_ftbfs.patch pcsx2-1.6.0+dfsg/debian/patches/cpp_error_ftbfs.patch --- pcsx2-1.6.0+dfsg/debian/patches/cpp_error_ftbfs.patch 1970-01-01 01:00:00.000000000 +0100 +++ pcsx2-1.6.0+dfsg/debian/patches/cpp_error_ftbfs.patch 2024-01-04 10:51:28.000000000 +0000 @@ -0,0 +1,36 @@ +Description: Fix CDVD.cpp FTBFS by adding include +Author: Mate Kukri +Last-Update: 2024-01-04 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +--- a/plugins/cdvdGigaherz/src/CDVD.cpp ++++ b/plugins/cdvdGigaherz/src/CDVD.cpp +@@ -18,6 +18,8 @@ + #include + #include + #include ++#include ++#include + #include "svnrev.h" + + Settings g_settings; +--- a/plugins/cdvdGigaherz/src/ReadThread.cpp ++++ b/plugins/cdvdGigaherz/src/ReadThread.cpp +@@ -19,6 +19,7 @@ + #include + #include + #include ++#include + + const u32 sectors_per_read = 16; + +--- a/plugins/cdvdGigaherz/src/Unix/LinuxIOCtlSrc.cpp ++++ b/plugins/cdvdGigaherz/src/Unix/LinuxIOCtlSrc.cpp +@@ -23,6 +23,7 @@ + #include + #include + #include ++#include + + IOCtlSrc::IOCtlSrc(decltype(m_filename) filename) + : m_filename(filename) diff -Nru pcsx2-1.6.0+dfsg/debian/patches/series pcsx2-1.6.0+dfsg/debian/patches/series --- pcsx2-1.6.0+dfsg/debian/patches/series 2022-10-23 12:49:04.000000000 +0100 +++ pcsx2-1.6.0+dfsg/debian/patches/series 2024-01-04 10:55:22.000000000 +0000 @@ -1 +1,2 @@ wxwidgets3.2.patch +cpp_error_ftbfs.patch