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>
This commit is contained in:
parent
f284a7dab6
commit
23afa68937
@ -24,7 +24,7 @@ add_library(
|
||||
$<TARGET_OBJECTS:rc4_decrepit>
|
||||
$<TARGET_OBJECTS:ripemd_decrepit>
|
||||
$<TARGET_OBJECTS:rsa_decrepit>
|
||||
$<TARGET_OBJECTS:x509>
|
||||
$<TARGET_OBJECTS:x509_decrepit>
|
||||
$<TARGET_OBJECTS:xts>
|
||||
)
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user