Get rid of bogus warning when compiling with Sun vendor compiler.

This commit is contained in:
Andy Polyakov 2004-01-24 16:31:21 +00:00
parent a5e8bcfb7b
commit 7f24b1c3e9
2 changed files with 13 additions and 0 deletions

View File

@ -84,6 +84,10 @@
#ifdef __cplusplus
extern "C" {
#elif defined(__SUNPRO_C)
# if __SUNPRO_C >= 0x520
# pragma error_messages (off,E_ARRAY_OF_INCOMPLETE_NONAME,E_ARRAY_OF_INCOMPLETE)
# endif
#endif
@ -501,5 +505,9 @@ void ERR_load_EC_strings(void);
#ifdef __cplusplus
}
#elif defined(__SUNPRO_C)
# if __SUNPRO_C >= 0x520
# pragma error_messages (default,E_ARRAY_OF_INCOMPLETE_NONAME,E_ARRAY_OF_INCOMPLETE)
# endif
#endif
#endif

View File

@ -75,6 +75,11 @@
#include <openssl/obj_mac.h>
#include <openssl/ec.h>
#if defined(__SUNPRO_C)
# if __SUNPRO_C >= 0x520
# pragma error_messages (off,E_ARRAY_OF_INCOMPLETE_NONAME,E_ARRAY_OF_INCOMPLETE)
# endif
#endif
/* Structure details are not part of the exported interface,
* so all this may change in future versions. */