diff options
author | Stephan Hartmann <sultan@gentoo.org> | 2021-07-19 12:49:01 +0200 |
---|---|---|
committer | Stephan Hartmann <sultan@gentoo.org> | 2021-07-19 12:49:24 +0200 |
commit | 0d8f2a7f189c900b1de10e074c455adb025caeae (patch) | |
tree | 8b133d65388aaa75fecc7ed2766da77688de7f6b /app-emulation | |
parent | media-gfx/libredwg: bdep on gcc[sanitize]/clang...[asan] (diff) | |
download | gentoo-0d8f2a7f189c900b1de10e074c455adb025caeae.tar.gz gentoo-0d8f2a7f189c900b1de10e074c455adb025caeae.tar.bz2 gentoo-0d8f2a7f189c900b1de10e074c455adb025caeae.zip |
app-emulation/aqemu: add patch for missing include
Closes: https://bugs.gentoo.org/802816
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Stephan Hartmann <sultan@gentoo.org>
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/aqemu/aqemu-0.9.2.ebuild | 5 | ||||
-rw-r--r-- | app-emulation/aqemu/files/aqemu-0.9.2-include.patch | 10 |
2 files changed, 14 insertions, 1 deletions
diff --git a/app-emulation/aqemu/aqemu-0.9.2.ebuild b/app-emulation/aqemu/aqemu-0.9.2.ebuild index 86008228bc21..852e66678fc8 100644 --- a/app-emulation/aqemu/aqemu-0.9.2.ebuild +++ b/app-emulation/aqemu/aqemu-0.9.2.ebuild @@ -26,7 +26,10 @@ RDEPEND=" DEPEND="${RDEPEND}" #DOCS=( AUTHORS CHANGELOG README TODO ) -PATCHES=( "${FILESDIR}/${PN}-0.9.2-qtbindir.patch" ) +PATCHES=( + "${FILESDIR}/${PN}-0.9.2-qtbindir.patch" + "${FILESDIR}/${PN}-0.9.2-include.patch" +) src_configure() { local mycmakeargs=( diff --git a/app-emulation/aqemu/files/aqemu-0.9.2-include.patch b/app-emulation/aqemu/files/aqemu-0.9.2-include.patch new file mode 100644 index 000000000000..98a14068a7cd --- /dev/null +++ b/app-emulation/aqemu/files/aqemu-0.9.2-include.patch @@ -0,0 +1,10 @@ +--- a/src/docopt/docopt_value.h ++++ b/src/docopt/docopt_value.h +@@ -13,6 +13,7 @@ + #include <vector> + #include <functional> // std::hash + #include <iosfwd> ++#include <stdexcept> + + namespace docopt { + |