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 ) grep'>log msg
AgeCommit message (Expand)Author
2018-11-12tests: Add 'test-assertm' to (guix tests)....* guix/tests.scm (test-assertm): New macro. * tests/gexp.scm (test-assertm): Remove. * tests/profiles.scm (test-assertm): Remove. * tests/challenge.scm (%store, test-assertm): Remove. * tests/debug-link.scm (%store, test-assertm): Remove. * tests/size.scm (%store, test-assertm): Remove. Ludovic Courtès
2018-08-24grafts: Add (guix build debug-link) and use it....Fixes <https://bugs.gnu.org/19973>. Reported by Mark H Weaver <mhw@netris.org>. * guix/build/debug-link.scm: New file. * guix/build/graft.scm (%graft-hooks): New variable. (graft): Add #:hooks and honor it. * guix/grafts.scm (graft-derivation/shallow): Add (guix build debug-link) and (guix elf) to #:modules. * tests/debug-link.scm: New file. * Makefile.am (MODULES): Add guix/build/debug-link.scm. (SCM_TESTS): Add tests/debug-link.scm. Ludovic Courtès