summaryrefslogtreecommitdiff
path: root/cryptlib.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-09-19 21:18:58 -0400
committerJeffrey Walton <noloader@gmail.com>2016-09-19 21:18:58 -0400
commit923efa865b5b1161fb1a4a429b9e57125692f873 (patch)
tree304243d1098d80d6583554dc3bc40d48602e5ac6 /cryptlib.cpp
parent478d57341654a1095801b1c4805fe1761c6f6be1 (diff)
downloadcryptopp-git-923efa865b5b1161fb1a4a429b9e57125692f873.tar.gz
Fix Solaris GCC and "constructor priorities are not supported"
Diffstat (limited to 'cryptlib.cpp')
-rw-r--r--cryptlib.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/cryptlib.cpp b/cryptlib.cpp
index c1f6f63e..d58c71d5 100644
--- a/cryptlib.cpp
+++ b/cryptlib.cpp
@@ -32,10 +32,6 @@
# error Cygwin does not support Windows style sockets. See http://www.cygwin.com/faq.html#faq.api.winsock
#endif
-// MacPorts/GCC does not provide init_priority(priority). Apple/GCC and Fink/GCC do provide it.
-#define HAVE_GCC_INIT_PRIORITY (__GNUC__ && (CRYPTOPP_INIT_PRIORITY > 0) && !(MACPORTS_GCC_COMPILER > 0))
-#define HAVE_MSC_INIT_PRIORITY (_MSC_VER && (CRYPTOPP_INIT_PRIORITY > 0))
-
NAMESPACE_BEGIN(CryptoPP)
CRYPTOPP_COMPILE_ASSERT(sizeof(byte) == 1);