To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64762
User sb changed the following:
What |Old value |New value
================================================================================
CC|'' |'hr'
--------------------------------------------------------------------------------
Assigned to|sb |maho
--------------------------------------------------------------------------------
------- Additional comments from [EMAIL PROTECTED] Wed May 17 01:45:12 -0700
2006 -------
sal/osl/unx/security.c:1.17 contained #include <stdint.h>, it got removed in
1.18 because "#i10000#: Solaris 8 doesn't support C99 header stdint.h". So, the
correct fix would rather be:
---8<---
#include <stddef.h>
+ /* Solaris 8 has no C99 stdint.h, and Solaris generally seems not to miss it
for
+ SIZE_MAX: */
+ #if !defined __SUNPRO_C
+ #include <stdint.h>
+ #endif
+
#include "system.h"
---8<---
Maho, please add on maho02.
---------------------------------------------------------------------
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]