Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@google.com>2016-03-09 23:11:12 +0300
committerAdam Langley <agl@google.com>2016-03-09 23:13:41 +0300
commit23afa689379b1b5a6a7a98327b847d323141930a (patch)
treefc7de06873e9b1aa116ac13cb65296fbd29e12d3 /include/openssl/conf.h
parentf284a7dab6fe4fcc3b96a520f93cd79ec4cff2fd (diff)
Fix the shared library build.
libdecrepit wants some symbols visible. Also a build file typo. Change-Id: I670d2324ab9048f84e7f80afdefc98cbab80335d Reviewed-on: https://boringssl-review.googlesource.com/7411 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'include/openssl/conf.h')
-rw-r--r--include/openssl/conf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/openssl/conf.h b/include/openssl/conf.h
index 75f14f5b..2aa3b79e 100644
--- a/include/openssl/conf.h
+++ b/include/openssl/conf.h
@@ -92,10 +92,10 @@ struct conf_st {
/* NCONF_new returns a fresh, empty |CONF|, or NULL on error. The |method|
* argument must be NULL. */
-CONF *NCONF_new(void *method);
+OPENSSL_EXPORT CONF *NCONF_new(void *method);
/* NCONF_free frees all the data owned by |conf| and then |conf| itself. */
-void NCONF_free(CONF *conf);
+OPENSSL_EXPORT void NCONF_free(CONF *conf);
/* NCONF_load parses the file named |filename| and adds the values found to
* |conf|. It returns one on success and zero on error. In the event of an