diff options
author | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-06 19:17:36 +0000 |
---|---|---|
committer | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-06 19:17:36 +0000 |
commit | fb10ca02ba9a76aaf8d59816fdcd9c9c7c1d2793 (patch) | |
tree | 7382f0cf7d30322f884d3152e048511b43ca23da /crypto | |
parent | 778f1e624024b1024000f4b5d4c92a1a7a8f203c (diff) | |
download | chromium_src-fb10ca02ba9a76aaf8d59816fdcd9c9c7c1d2793.zip chromium_src-fb10ca02ba9a76aaf8d59816fdcd9c9c7c1d2793.tar.gz chromium_src-fb10ca02ba9a76aaf8d59816fdcd9c9c7c1d2793.tar.bz2 |
OpenSSL component build fixes.
BUG=none
TEST=build with component=shared_library use_openssl=1
Review URL: http://codereview.chromium.org/8166003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@104342 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/openssl_util.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/openssl_util.h b/crypto/openssl_util.h index 6c1d73b..3f89f98 100644 --- a/crypto/openssl_util.h +++ b/crypto/openssl_util.h @@ -8,6 +8,7 @@ #include "base/basictypes.h" #include "base/location.h" +#include "crypto/crypto_export.h" namespace crypto { @@ -80,7 +81,7 @@ class ScopedOpenSSLSafeSizeBuffer { // before any other OpenSSL functions. // This function is thread-safe, and OpenSSL will only ever be initialized once. // OpenSSL will be properly shut down on program exit. -void EnsureOpenSSLInit(); +void CRYPTO_EXPORT EnsureOpenSSLInit(); // Drains the OpenSSL ERR_get_error stack. On a debug build the error codes // are send to VLOG(1), on a release build they are disregarded. In most |