Module Name:    src
Committed By:   jmmv
Date:           Fri Feb 15 17:08:35 UTC 2013

Modified Files:
        src/external/bsd/atf/lib/libatf-c: bconfig.h
        src/external/bsd/atf/lib/libatf-c++: Makefile
        src/external/bsd/atf/tests/atf/atf-c++/detail: Makefile
        src/external/bsd/atf/tests/atf/atf-c/detail: Makefile
        src/external/bsd/atf/tests/atf/test-programs: Makefile

Log Message:
Update reachover Makefiles for atf 0.17.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/external/bsd/atf/lib/libatf-c/bconfig.h
cvs rdiff -u -r1.16 -r1.17 src/external/bsd/atf/lib/libatf-c++/Makefile
cvs rdiff -u -r1.1 -r1.2 \
    src/external/bsd/atf/tests/atf/atf-c++/detail/Makefile
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/atf/tests/atf/atf-c/detail/Makefile
cvs rdiff -u -r1.2 -r1.3 \
    src/external/bsd/atf/tests/atf/test-programs/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/atf/lib/libatf-c/bconfig.h
diff -u src/external/bsd/atf/lib/libatf-c/bconfig.h:1.11 src/external/bsd/atf/lib/libatf-c/bconfig.h:1.12
--- src/external/bsd/atf/lib/libatf-c/bconfig.h:1.11	Wed Jul 11 22:40:16 2012
+++ src/external/bsd/atf/lib/libatf-c/bconfig.h	Fri Feb 15 17:08:34 2013
@@ -23,7 +23,7 @@
 #define HAVE_MEMORY_H 1
 
 /* Define to 1 if getopt has optreset */
-/* #undef HAVE_OPTRESET */
+#define HAVE_OPTRESET 1
 
 /* Define to 1 if you have the `putenv' function. */
 #define HAVE_PUTENV 1
@@ -96,7 +96,7 @@
 #define PACKAGE_NAME "Automated Testing Framework"
 
 /* Define to the full name and version of this package. */
-#define PACKAGE_STRING "Automated Testing Framework 0.16"
+#define PACKAGE_STRING "Automated Testing Framework 0.17"
 
 /* Define to the one symbol short name of this package. */
 #define PACKAGE_TARNAME "atf"
@@ -105,10 +105,10 @@
 #define PACKAGE_URL "http://code.google.com/p/kyua/wiki/ATF";
 
 /* Define to the version of this package. */
-#define PACKAGE_VERSION "0.16"
+#define PACKAGE_VERSION "0.17"
 
 /* Define to 1 if you have the ANSI C header files. */
 #define STDC_HEADERS 1
 
 /* Version number of package */
-#define VERSION "0.16"
+#define VERSION "0.17"

Index: src/external/bsd/atf/lib/libatf-c++/Makefile
diff -u src/external/bsd/atf/lib/libatf-c++/Makefile:1.16 src/external/bsd/atf/lib/libatf-c++/Makefile:1.17
--- src/external/bsd/atf/lib/libatf-c++/Makefile:1.16	Sun Jul 15 00:05:51 2012
+++ src/external/bsd/atf/lib/libatf-c++/Makefile	Fri Feb 15 17:08:35 2013
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.16 2012/07/15 00:05:51 abs Exp $
+# $NetBSD: Makefile,v 1.17 2013/02/15 17:08:35 jmmv Exp $
 
 NOLINT=		# defined
 
@@ -40,12 +40,14 @@ SRCS=		application.cpp \
 		process.cpp \
 		tests.cpp \
 		text.cpp \
-		ui.cpp
+		ui.cpp \
+		utils.cpp
 
 INCS=		build.hpp \
 		check.hpp \
 		config.hpp \
 		macros.hpp \
+		noncopyable.hpp \
 		tests.hpp \
 		utils.hpp
 INCSDIR=	/usr/include/atf-c++

Index: src/external/bsd/atf/tests/atf/atf-c++/detail/Makefile
diff -u src/external/bsd/atf/tests/atf/atf-c++/detail/Makefile:1.1 src/external/bsd/atf/tests/atf/atf-c++/detail/Makefile:1.2
--- src/external/bsd/atf/tests/atf/atf-c++/detail/Makefile:1.1	Wed Oct 20 09:20:11 2010
+++ src/external/bsd/atf/tests/atf/atf-c++/detail/Makefile	Fri Feb 15 17:08:35 2013
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2010/10/20 09:20:11 jmmv Exp $
+# $NetBSD: Makefile,v 1.2 2013/02/15 17:08:35 jmmv Exp $
 
 .include <bsd.own.mk>
 
@@ -13,6 +13,7 @@ CPPFLAGS+=	-I${NETBSDSRCDIR}/lib/libatf-
 
 TESTS_CXX=
 .for test in	application_test \
+		auto_array_test \
 		env_test \
 		exceptions_test \
 		expand_test \

Index: src/external/bsd/atf/tests/atf/atf-c/detail/Makefile
diff -u src/external/bsd/atf/tests/atf/atf-c/detail/Makefile:1.3 src/external/bsd/atf/tests/atf/atf-c/detail/Makefile:1.4
--- src/external/bsd/atf/tests/atf/atf-c/detail/Makefile:1.3	Fri Aug 10 17:12:11 2012
+++ src/external/bsd/atf/tests/atf/atf-c/detail/Makefile	Fri Feb 15 17:08:35 2013
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2012/08/10 17:12:11 joerg Exp $
+# $NetBSD: Makefile,v 1.4 2013/02/15 17:08:35 jmmv Exp $
 
 .include <bsd.own.mk>
 
@@ -24,7 +24,6 @@ TESTS_C=
 		map_test \
 		process_test \
 		sanity_test \
-		test_helpers_test \
 		text_test \
 		user_test
 TESTS_C+=	${test}

Index: src/external/bsd/atf/tests/atf/test-programs/Makefile
diff -u src/external/bsd/atf/tests/atf/test-programs/Makefile:1.2 src/external/bsd/atf/tests/atf/test-programs/Makefile:1.3
--- src/external/bsd/atf/tests/atf/test-programs/Makefile:1.2	Tue Jul 13 21:12:39 2010
+++ src/external/bsd/atf/tests/atf/test-programs/Makefile	Fri Feb 15 17:08:35 2013
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2010/07/13 21:12:39 jmmv Exp $
+# $NetBSD: Makefile,v 1.3 2013/02/15 17:08:35 jmmv Exp $
 
 .include <bsd.own.mk>
 
@@ -16,8 +16,7 @@ TESTS_C=	c_helpers
 TESTS_CXX=	cpp_helpers
 
 TESTS_SH=	sh_helpers
-.for t in config_test expect_test fork_test meta_data_test result_test \
-          srcdir_test
+.for t in config_test expect_test meta_data_test result_test srcdir_test
 TESTS_SH+=		${t}
 TESTS_SH_SRC_${t}=	common.sh ${t}.sh
 .endfor

Reply via email to