Downloaded from https://anonscm.debian.org/viewvc/pkg-games/packages/trunk/kiki-the-nano-bot/debian/patches/missing-includes.patch?revision=7984&view=co Status: in upstream CVS --- a/kodilib/src/handler/KPickable.h +++ b/kodilib/src/handler/KPickable.h @@ -8,6 +8,7 @@ #include "KIntrospection.h" #include +#include #define DEBUG_PICKING false --- a/kodilib/src/tools/KIntrospection.h +++ b/kodilib/src/tools/KIntrospection.h @@ -11,6 +11,7 @@ #endif #include +#include // -------------------------------------------------------------------------------------------------------- class KClassInfo --- a/kodilib/src/tools/KStringTools.cpp +++ b/kodilib/src/tools/KStringTools.cpp @@ -6,7 +6,7 @@ #include "KStringTools.h" #include "KVector.h" -#include // INT_MAX +#include // INT_MAX #include // -------------------------------------------------------------------------------------------------------- --- a/kodilib/src/tools/KStringTools.h +++ b/kodilib/src/tools/KStringTools.h @@ -9,6 +9,7 @@ #include #include #include +#include // -------------------------------------------------------------------------------------------------------- --- a/kodilib/src/tools/KXMLTools.cpp +++ b/kodilib/src/tools/KXMLTools.cpp @@ -7,6 +7,7 @@ #include "KConsole.h" #include "KSeparatedMatrix.h" #include +#include // -------------------------------------------------------------------------------------------------------- std::string kXMLTag ( const std::string & name, const std::string & attributes, int depth ) cd40a91e0273a5dba0594ad3e0e9bb'/>
‘patch-inputs’ phase. [native-inputs]: Replace docbook-xml-4.1.2 with the latest docbook-xml. [inputs]: Add tzdata. * gnu/packages/patches/reposurgeon-add-missing-docbook-files.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it.
AgeCommit message (Collapse)Author
2021-12-23tests: docker: Fix it.Mathieu Othacehe
The docker tests are broken because the docker overlay doesn't support running on our own storage overlay. Use the new <virtual-machine> volatile? field to spawn a VM with a persistent storage and no overlay. * gnu/tests/docker.scm (run-docker-test): Add the docker-tarball to the gc roots as the host store is not shared anymore. Spawn a VM without volatile storage. (run-docker-system-test): Ditto. (%test-docker-system): Adapt it to use the image API.
Tobias Geerinckx-Rice