Apache OpenOffice (AOO) Bugzilla – Issue 117202
udkapi: Use of undefined macros in header files
Last modified: 2017-05-20 11:27:40 UTC
In the OpenOffice.org3.3_SDK package, there are a couple header files that use macros that may not be defined on certain platforms (e.g., OS X). include/sal/types.h:90 #if (_MSC_VER >= 1000) This can be changed to: #if defined(_MSC_VER) && (_MSC_VER >= 1000) include/osl/diagnose.h: 125 #if OSL_DEBUG_LEVEL > 0 can be changed to: #if defined(OSL_DEBUG_LEVEL) && (OSL_DEBUG_LEVEL > 0) There is a similar situation at include/osl/diagnose.h: 150. Making the above changes will allow the headers to be included while using the gcc -Wundef warning level without generating warnings (a requirement in our system).
getting rid of value "enhancement" for field "severity". For enhancement the field "issue type" shall be used.
Reset assigne to the default "issues@openoffice.apache.org".