From: Spencer O. <nt...@us...> - 2009-12-09 11:36:20
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via 26d7ed08f9ff220be583179fdea76466739cf32d (commit) from 733ced125ae5434818a50151b15f78fd5b514807 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 26d7ed08f9ff220be583179fdea76466739cf32d Author: Spencer Oliver <nt...@us...> Date: Wed Dec 9 10:35:30 2009 +0000 ETM: only include oocd_trace.h when tracing enabled. Fixes build issue on systems that do not have <termios.h>, eg native win32. Signed-off-by: Spencer Oliver <nt...@us...> diff --git a/src/target/etm.c b/src/target/etm.c index e0671d5..9cb647c 100644 --- a/src/target/etm.c +++ b/src/target/etm.c @@ -28,7 +28,10 @@ #include "arm_disassembler.h" #include "register.h" #include "etm_dummy.h" + +#if BUILD_OOCD_TRACE == 1 #include "oocd_trace.h" +#endif /* ----------------------------------------------------------------------- Summary of changes: src/target/etm.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) hooks/post-receive -- Main OpenOCD repository |