Add dependency of key_app_writer example program on PK parse module
This commit is contained in:
parent
44da18a294
commit
b14c331eb9
1 changed files with 5 additions and 3 deletions
|
@ -87,10 +87,12 @@
|
||||||
USAGE_OUT \
|
USAGE_OUT \
|
||||||
"\n"
|
"\n"
|
||||||
|
|
||||||
#if !defined(MBEDTLS_PK_WRITE_C) || !defined(MBEDTLS_FS_IO)
|
#if !defined(MBEDTLS_PK_PARSE_C) || \
|
||||||
|
!defined(MBEDTLS_PK_WRITE_C) || \
|
||||||
|
!defined(MBEDTLS_FS_IO)
|
||||||
int main( void )
|
int main( void )
|
||||||
{
|
{
|
||||||
mbedtls_printf( "MBEDTLS_PK_WRITE_C and/or MBEDTLS_FS_IO not defined.\n" );
|
mbedtls_printf( "MBEDTLS_PK_PARSE_C and/or MBEDTLS_PK_WRITE_C and/or MBEDTLS_FS_IO not defined.\n" );
|
||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
@ -433,4 +435,4 @@ exit:
|
||||||
|
|
||||||
return( exit_code );
|
return( exit_code );
|
||||||
}
|
}
|
||||||
#endif /* MBEDTLS_PK_WRITE_C && MBEDTLS_FS_IO */
|
#endif /* MBEDTLS_PK_PARSE_C && MBEDTLS_PK_WRITE_C && MBEDTLS_FS_IO */
|
||||||
|
|
Loading…
Reference in a new issue