The branch main has been updated by jkim: URL: https://cgit.FreeBSD.org/src/commit/?id=649ccdd753790069623e192185d133fd26a03bf9
commit 649ccdd753790069623e192185d133fd26a03bf9 Author: Jung-uk Kim <[email protected]> AuthorDate: 2021-09-01 04:10:59 +0000 Commit: Jung-uk Kim <[email protected]> CommitDate: 2021-09-01 04:27:45 +0000 OpenSSL: Reduce diff with the upstream No functional change expected. --- secure/lib/libcrypto/opensslconf.h.in | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/secure/lib/libcrypto/opensslconf.h.in b/secure/lib/libcrypto/opensslconf.h.in index 4d96de2d51ec..b0936858a221 100644 --- a/secure/lib/libcrypto/opensslconf.h.in +++ b/secure/lib/libcrypto/opensslconf.h.in @@ -118,6 +118,11 @@ extern "C" { # undef DECLARE_DEPRECATED # define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated)); # endif +# elif defined(__SUNPRO_C) +# if (__SUNPRO_C >= 0x5130) +# undef DECLARE_DEPRECATED +# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated)); +# endif # endif #endif _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-main To unsubscribe, send any mail to "[email protected]"
