To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=68377 Issue #|68377 Summary|Inclusion of unistd.h should be guarded Component|tools Version|680m181 Platform|PC URL| OS/Version|All Status|UNCONFIRMED Status whiteboard| Keywords| Resolution| Issue type|PATCH Priority|P3 Subcomponent|code Assigned to|mh Reported by|tml
------- Additional comments from [EMAIL PROTECTED] Thu Aug 10 07:43:52 -0700 2006 ------- soltools/mkdepend/def.h includes <unistd.h> unconditionally. This header does not exist for MSVC, so an #ifndef WIN32 guard is needed: --- soltools/mkdepend/def.h +++ soltools/mkdepend/def.h @@ -39,6 +39,8 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#ifndef WIN32 #include <unistd.h> +#endif #include <ctype.h> #ifndef X_NOT_POSIX --------------------------------------------------------------------- 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]
