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:
David Benjamin 2016-03-09 15:11:12 -05:00 committed by Adam Langley
parent f284a7dab6
commit 23afa68937
2 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ add_library(
$<TARGET_OBJECTS:rc4_decrepit> $<TARGET_OBJECTS:rc4_decrepit>
$<TARGET_OBJECTS:ripemd_decrepit> $<TARGET_OBJECTS:ripemd_decrepit>
$<TARGET_OBJECTS:rsa_decrepit> $<TARGET_OBJECTS:rsa_decrepit>
$<TARGET_OBJECTS:x509> $<TARGET_OBJECTS:x509_decrepit>
$<TARGET_OBJECTS:xts> $<TARGET_OBJECTS:xts>
) )

View File

@ -92,10 +92,10 @@ struct conf_st {
/* NCONF_new returns a fresh, empty |CONF|, or NULL on error. The |method| /* NCONF_new returns a fresh, empty |CONF|, or NULL on error. The |method|
* argument must be NULL. */ * 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. */ /* 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 /* 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 * |conf|. It returns one on success and zero on error. In the event of an