head 1.2; access; symbols pkgsrc-2013Q3:1.1.0.4 pkgsrc-2013Q3-base:1.1 pkgsrc-2013Q2:1.1.0.2 pkgsrc-2013Q2-base:1.1; locks; strict; comment @// @; 1.2 date 2013.10.18.21.02.02; author jmmv; state dead; branches; next 1.1; commitid WbDmlKlFNpAlOO9x; 1.1 date 2013.05.06.14.46.58; author joerg; state Exp; branches; next ; desc @@ 1.2 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-utils_fs_auto__cleaners.hpp,v 1.1 2013/05/06 14:46:58 joerg Exp $ --- utils/fs/auto_cleaners.hpp.orig 2013-05-06 08:10:18.000000000 +0000 +++ utils/fs/auto_cleaners.hpp @@@@ -33,7 +33,13 @@@@ #define UTILS_FS_AUTO_CLEANERS_HPP #include +#if defined(_LIBCPP_VERSION) || __cplusplus >= 201103L +#include +using std::shared_ptr; +#else #include +using std::tr1::shared_ptr; +#endif #include "utils/fs/path.hpp" @@@@ -48,7 +54,7 @@@@ namespace fs { class auto_directory { struct impl; /// Reference-counted, shared implementation. - std::tr1::shared_ptr< impl > _pimpl; + shared_ptr< impl > _pimpl; public: explicit auto_directory(const path&); @@@@ -68,7 +74,7 @@@@ public: class auto_file { struct impl; /// Reference-counted, shared implementation. - std::tr1::shared_ptr< impl > _pimpl; + shared_ptr< impl > _pimpl; public: explicit auto_file(const path&); @ 1.1 log @Fix missing includes. Prefer C++11 over TR1 when using libc++ or C++11. @ text @d1 1 a1 1 $NetBSD$ @