summaryrefslogtreecommitdiff
path: root/crypto/openssl/include/openssl/opensslconf.h.in
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/openssl/include/openssl/opensslconf.h.in')
-rw-r--r--crypto/openssl/include/openssl/opensslconf.h.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/crypto/openssl/include/openssl/opensslconf.h.in b/crypto/openssl/include/openssl/opensslconf.h.in
index bc98cad51a64..06270922c2ac 100644
--- a/crypto/openssl/include/openssl/opensslconf.h.in
+++ b/crypto/openssl/include/openssl/opensslconf.h.in
@@ -1,7 +1,7 @@
/*
* {- join("\n * ", @autowarntext) -}
*
- * Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
+ * Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@@ -77,6 +77,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