From: David B. <dbr...@us...> - 2009-12-03 00:25:46
|
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 a79b76d893ca5c3b8144b2098c88f516052d72fe (commit) from 6ec526e706483cd2de6c8de4bafa885522a782cd (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 a79b76d893ca5c3b8144b2098c88f516052d72fe Author: David Brownell <dbr...@us...> Date: Wed Dec 2 15:24:14 2009 -0800 stubs: buildfix The new stubs for httpd and ioutil gave errors like: ioutil_stubs.c: In function âioutil_initâ: ioutil_stubs.c:27: error: implicit declaration of function âLOG_DEBUGâ ioutil_stubs.c:28: error: âERROR_OKâ undeclared (first use in this function) ioutil_stubs.c:28: error: (Each undeclared identifier is reported only once ioutil_stubs.c:28: error: for each function it appears in.) Fix. Signed-off-by: David Brownell <dbr...@us...> diff --git a/src/helper/ioutil_stubs.c b/src/helper/ioutil_stubs.c index 1171a6f..3cd9f97 100644 --- a/src/helper/ioutil_stubs.c +++ b/src/helper/ioutil_stubs.c @@ -21,6 +21,7 @@ #include <config.h> #endif #include "ioutil.h" +#include "log.h" int ioutil_init(struct command_context *cmd_ctx) { diff --git a/src/server/httpd_stubs.c b/src/server/httpd_stubs.c index 0a63362..6c289af 100644 --- a/src/server/httpd_stubs.c +++ b/src/server/httpd_stubs.c @@ -21,6 +21,7 @@ #include <config.h> #endif #include "httpd.h" +#include "log.h" int httpd_start(struct command_context *cmd_ctx) { ----------------------------------------------------------------------- Summary of changes: src/helper/ioutil_stubs.c | 1 + src/server/httpd_stubs.c | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) hooks/post-receive -- Main OpenOCD repository |