Commit 7f24b1c3 authored by Andy Polyakov's avatar Andy Polyakov
Browse files

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

parent a5e8bcfb
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -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
+5 −0
Original line number Diff line number Diff line
@@ -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. */