To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=82270 Issue #|82270 Summary|missing stdio.h include Component|udk Version|680m229 Platform|PowerPC URL| OS/Version|Linux Status|NEW Status whiteboard| Keywords| Resolution| Issue type|PATCH Priority|P3 Subcomponent|code Assigned to|jl Reported by|rene
------- Additional comments from [EMAIL PROTECTED] Thu Oct 4 14:13:38 +0000 2007 ------- jvmfwks build fails on my system (Linux/ppc, Debian sid, gcc 4.2) with OSL_DEBUG_LEVEL=2 because fprintf() can't be found. There's a #include <stdio.h> missing. Trivial patch: --- source/fwkutil.hxx 13 Jun 2007 07:58:34 -0000 1.13 +++ source/fwkutil.hxx 4 Oct 2007 14:07:48 -0000 @@ -42,7 +42,9 @@ #include "rtl/ustrbuf.hxx" #include "rtl/byteseq.hxx" #include "osl/thread.hxx" - +#if OSL_DEBUG_LEVEL >=2 +#include <stdio.h> +#endif namespace jfw --------------------------------------------------------------------- Please do not reply to this automatically generated notification from Issue Tracker. Please log onto the website and enter your comments. http://qa.openoffice.org/issue_handling/project_issues.html#notification --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
