mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-03-23 05:35:14 +00:00
Fix check-generated-files after creating a flag
This commit is contained in:
parent
6f519a3b22
commit
6fe99be972
|
@ -612,6 +612,9 @@ static const char *features[] = {
|
|||
#if defined(MBEDTLS_ECP_C)
|
||||
"MBEDTLS_ECP_C",
|
||||
#endif /* MBEDTLS_ECP_C */
|
||||
#if defined(MBEDTLS_USE_UECC)
|
||||
"MBEDTLS_USE_UECC",
|
||||
#endif /* MBEDTLS_USE_UECC */
|
||||
#if defined(MBEDTLS_ENTROPY_C)
|
||||
"MBEDTLS_ENTROPY_C",
|
||||
#endif /* MBEDTLS_ENTROPY_C */
|
||||
|
|
|
@ -1674,6 +1674,14 @@ int query_config( const char *config )
|
|||
}
|
||||
#endif /* MBEDTLS_ECP_C */
|
||||
|
||||
#if defined(MBEDTLS_USE_UECC)
|
||||
if( strcmp( "MBEDTLS_USE_UECC", config ) == 0 )
|
||||
{
|
||||
MACRO_EXPANSION_TO_STR( MBEDTLS_USE_UECC );
|
||||
return( 0 );
|
||||
}
|
||||
#endif /* MBEDTLS_USE_UECC */
|
||||
|
||||
#if defined(MBEDTLS_ENTROPY_C)
|
||||
if( strcmp( "MBEDTLS_ENTROPY_C", config ) == 0 )
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue