Enable fasttrap and make dtraceall depend on fasttrap when building i386

or amd64.

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Rui Paulo 2010-08-24 13:21:05 +00:00
parent 8a8d8fa3d1
commit 4fbdc85400
2 changed files with 2 additions and 1 deletions

View File

@ -15,7 +15,7 @@ SUBDIR= dtmalloc \
systrace
.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386"
SUBDIR+= fbt
SUBDIR+= fasttrap fbt
.endif
.include <bsd.subdir.mk>

View File

@ -68,6 +68,7 @@ MODULE_DEPEND(dtraceall, dtmalloc, 1, 1, 1);
MODULE_DEPEND(dtraceall, dtnfsclient, 1, 1, 1);
#if defined(__amd64__) || defined(__i386__)
MODULE_DEPEND(dtraceall, fbt, 1, 1, 1);
MODULE_DEPEND(dtraceall, fasttrap, 1, 1, 1);
#endif
MODULE_DEPEND(dtraceall, lockstat, 1, 1, 1);
MODULE_DEPEND(dtraceall, sdt, 1, 1, 1);