head 1.3; access; symbols pkgsrc-2013Q3:1.2.0.4 pkgsrc-2013Q3-base:1.2 pkgsrc-2013Q2:1.2.0.2 pkgsrc-2013Q2-base:1.2 pkgsrc-2013Q1:1.1.0.2 pkgsrc-2013Q1-base:1.1; locks; strict; comment @// @; 1.3 date 2013.10.18.21.02.02; author jmmv; state dead; branches; next 1.2; commitid WbDmlKlFNpAlOO9x; 1.2 date 2013.05.06.14.46.58; author joerg; state Exp; branches; next 1.1; 1.1 date 2013.03.02.18.16.39; author joerg; state Exp; branches; next ; desc @@ 1.3 log @Update to 0.7: Experimental version released on October 18th, 2013. * Made failures from testers more resilent. If a tester fails, the corresponding test case will be marked as broken instead of causing kyua to exit. * Added the '--results-filter' option to the 'report-html' command and set its default value to skip passed results from HTML reports. This is to keep these reports more succint and to avoid generating tons of detail files that will be, in general, useless. * Switched to use Lutok 0.3 to gain compatibility with Lua 5.2. * Issue 69: Cope with the lack of AM_PROG_AR in configure.ac, which first appeared in Automake 1.11.2. Fixes a problem in Ubuntu 10.04 LTS, which appears stuck in 1.11.1. @ text @$NetBSD: patch-engine_metadata.hpp,v 1.2 2013/05/06 14:46:58 joerg Exp $ --- engine/metadata.hpp.orig 2013-01-26 03:01:41.000000000 +0000 +++ engine/metadata.hpp @@@@ -38,13 +38,19 @@@@ #include #include +#if defined(_LIBCPP_VERSION) || __cplusplus >= 201103L +#include +using std::shared_ptr; +#else #include +using std::tr1::shared_ptr; +#endif #include "utils/noncopyable.hpp" namespace utils { namespace config { class tree; } -namespace datetime { class delta; } +namespace datetime { struct delta; } namespace fs { class path; } namespace units { class bytes; } } // namespace utils @@@@ -73,7 +79,7 @@@@ class metadata { struct impl; /// Pointer to the shared internal implementation. - std::tr1::shared_ptr< impl > _pimpl; + shared_ptr< impl > _pimpl; friend class metadata_builder; @ 1.2 log @Fix missing includes. Prefer C++11 over TR1 when using libc++ or C++11. @ text @d1 1 a1 1 $NetBSD: patch-engine_metadata.hpp,v 1.1 2013/03/02 18:16:39 joerg Exp $ @ 1.1 log @Fix class vs struct conflict. Put operator in the correct namespace. @ text @d1 1 a1 1 $NetBSD$ d3 1 a3 1 --- engine/metadata.hpp.orig 2013-02-28 21:58:41.000000000 +0000 d5 13 a17 1 @@@@ -44,7 +44,7 @@@@ d26 9 @