Module Name: src Committed By: kamil Date: Tue Dec 13 12:59:46 UTC 2016
Modified Files: src/tests/kernel/arch/amd64: Makefile Log Message: Define in CPPFLAGS symbol _KERNTYPES in order to get PRIxREGISTER This type will be used in t_ptrace_wait* for the printf(3) function. Sponsored by <The NetBSD Foundation> To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/tests/kernel/arch/amd64/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/tests/kernel/arch/amd64/Makefile diff -u src/tests/kernel/arch/amd64/Makefile:1.1 src/tests/kernel/arch/amd64/Makefile:1.2 --- src/tests/kernel/arch/amd64/Makefile:1.1 Fri Dec 2 05:54:15 2016 +++ src/tests/kernel/arch/amd64/Makefile Tue Dec 13 12:59:46 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2016/12/02 05:54:15 kamil Exp $ +# $NetBSD: Makefile,v 1.2 2016/12/13 12:59:46 kamil Exp $ NOMAN= # defined @@ -13,4 +13,6 @@ TESTS_C+= t_ptrace_wait6 TESTS_C+= t_ptrace_waitid TESTS_C+= t_ptrace_waitpid +CPPFLAGS+= -D_KERNTYPES + .include <bsd.test.mk>