From: Øyvind H. <go...@us...> - 2010-01-31 19:31:26
|
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 02731cf78b3663739e3755295a4239f2658a3fdc (commit) from f68dff66904321392c3137db7eb40e8633c2e507 (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 02731cf78b3663739e3755295a4239f2658a3fdc Author: Ãyvind Harboe <oyv...@zy...> Date: Sun Jan 31 15:48:14 2010 +0100 build: fix problems with "struct stat" not being defined under eCos Include <sys/stat.h> according to http://www.opengroup.org/onlinepubs/000095399/functions/stat.html Signed-off-by: Ãyvind Harboe <oyv...@zy...> diff --git a/src/target/arm_semihosting.c b/src/target/arm_semihosting.c index 8db60a5..c41c5a0 100644 --- a/src/target/arm_semihosting.c +++ b/src/target/arm_semihosting.c @@ -43,6 +43,7 @@ #include "arm_semihosting.h" #include <helper/binarybuffer.h> #include <helper/log.h> +#include <sys/stat.h> static int open_modeflags[12] = { O_RDONLY, ----------------------------------------------------------------------- Summary of changes: src/target/arm_semihosting.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) hooks/post-receive -- Main OpenOCD repository |