mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 11:55:42 +01:00
Add missing depends in x509 programs
This commit is contained in:
parent
8d649c66b3
commit
0878a0d884
@ -36,6 +36,8 @@ Bugfix
|
|||||||
POLARSSL_SSL_SSESSION_TICKETS where both enabled in config.h (introduced
|
POLARSSL_SSL_SSESSION_TICKETS where both enabled in config.h (introduced
|
||||||
in 1.3.10).
|
in 1.3.10).
|
||||||
* Add missing extern "C" guard in aesni.h (reported by amir zamani).
|
* Add missing extern "C" guard in aesni.h (reported by amir zamani).
|
||||||
|
* Add missing dependency on SHA-256 in some x509 programs (reported by
|
||||||
|
Gergely Budai).
|
||||||
|
|
||||||
Changes
|
Changes
|
||||||
* Adjusting/overriding CFLAGS and LDFLAGS with the make build syste is now
|
* Adjusting/overriding CFLAGS and LDFLAGS with the make build syste is now
|
||||||
|
@ -34,12 +34,12 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !defined(POLARSSL_X509_CSR_WRITE_C) || !defined(POLARSSL_FS_IO) || \
|
#if !defined(POLARSSL_X509_CSR_WRITE_C) || !defined(POLARSSL_FS_IO) || \
|
||||||
!defined(POLARSSL_PK_PARSE_C) || \
|
!defined(POLARSSL_PK_PARSE_C) || !defined(POLARSSL_SHA256_C) || \
|
||||||
!defined(POLARSSL_ENTROPY_C) || !defined(POLARSSL_CTR_DRBG_C)
|
!defined(POLARSSL_ENTROPY_C) || !defined(POLARSSL_CTR_DRBG_C)
|
||||||
int main( void )
|
int main( void )
|
||||||
{
|
{
|
||||||
polarssl_printf( "POLARSSL_X509_CSR_WRITE_C and/or POLARSSL_FS_IO and/or "
|
polarssl_printf( "POLARSSL_X509_CSR_WRITE_C and/or POLARSSL_FS_IO and/or "
|
||||||
"POLARSSL_PK_PARSE_C and/or "
|
"POLARSSL_PK_PARSE_C and/or POLARSSL_SHA256_c and/or "
|
||||||
"POLARSSL_ENTROPY_C and/or POLARSSL_CTR_DRBG_C "
|
"POLARSSL_ENTROPY_C and/or POLARSSL_CTR_DRBG_C "
|
||||||
"not defined.\n");
|
"not defined.\n");
|
||||||
return( 0 );
|
return( 0 );
|
||||||
|
@ -36,11 +36,11 @@
|
|||||||
#if !defined(POLARSSL_X509_CRT_WRITE_C) || \
|
#if !defined(POLARSSL_X509_CRT_WRITE_C) || \
|
||||||
!defined(POLARSSL_X509_CRT_PARSE_C) || !defined(POLARSSL_FS_IO) || \
|
!defined(POLARSSL_X509_CRT_PARSE_C) || !defined(POLARSSL_FS_IO) || \
|
||||||
!defined(POLARSSL_ENTROPY_C) || !defined(POLARSSL_CTR_DRBG_C) || \
|
!defined(POLARSSL_ENTROPY_C) || !defined(POLARSSL_CTR_DRBG_C) || \
|
||||||
!defined(POLARSSL_ERROR_C)
|
!defined(POLARSSL_ERROR_C) || !defined(POLARSSL_SHA256_C)
|
||||||
int main( void )
|
int main( void )
|
||||||
{
|
{
|
||||||
polarssl_printf( "POLARSSL_X509_CRT_WRITE_C and/or POLARSSL_X509_CRT_PARSE_C and/or "
|
polarssl_printf( "POLARSSL_X509_CRT_WRITE_C and/or POLARSSL_X509_CRT_PARSE_C and/or "
|
||||||
"POLARSSL_FS_IO and/or "
|
"POLARSSL_FS_IO and/or POLARSSL_SHA256_C and_or "
|
||||||
"POLARSSL_ENTROPY_C and/or POLARSSL_CTR_DRBG_C and/or "
|
"POLARSSL_ENTROPY_C and/or POLARSSL_CTR_DRBG_C and/or "
|
||||||
"POLARSSL_ERROR_C not defined.\n");
|
"POLARSSL_ERROR_C not defined.\n");
|
||||||
return( 0 );
|
return( 0 );
|
||||||
|
Loading…
Reference in New Issue
Block a user