Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 3 Sep 2021 17:11:37 GMT
From:      Jung-uk Kim <jkim@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: f7fe1ce49e7a - stable/13 - OpenSSL: Reduce diff with the upstream
Message-ID:  <202109031711.183HBb4v099310@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by jkim:

URL: https://cgit.FreeBSD.org/src/commit/?id=f7fe1ce49e7ae131de831e5ed211e0fb36c66014

commit f7fe1ce49e7ae131de831e5ed211e0fb36c66014
Author:     Jung-uk Kim <jkim@FreeBSD.org>
AuthorDate: 2021-09-01 04:10:59 +0000
Commit:     Jung-uk Kim <jkim@FreeBSD.org>
CommitDate: 2021-09-03 17:10:57 +0000

    OpenSSL: Reduce diff with the upstream
    
    (cherry picked from commit 649ccdd753790069623e192185d133fd26a03bf9)
---
 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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202109031711.183HBb4v099310>