mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-11-04 04:32:24 -05:00 
			
		
		
		
	Fix build failure for thread config
This commit is contained in:
		
							parent
							
								
									72b69e3808
								
							
						
					
					
						commit
						8b4111c516
					
				@ -39,7 +39,6 @@
 | 
			
		||||
 | 
			
		||||
/* mbed TLS feature support */
 | 
			
		||||
#define MBEDTLS_AES_ROM_TABLES
 | 
			
		||||
#define MBEDTLS_CMAC_C
 | 
			
		||||
#define MBEDTLS_ECP_DP_SECP256R1_ENABLED
 | 
			
		||||
#define MBEDTLS_ECP_NIST_OPTIM
 | 
			
		||||
#define MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED
 | 
			
		||||
@ -58,6 +57,7 @@
 | 
			
		||||
#define MBEDTLS_CCM_C
 | 
			
		||||
#define MBEDTLS_CIPHER_C
 | 
			
		||||
#define MBEDTLS_CTR_DRBG_C
 | 
			
		||||
#define MBEDTLS_CMAC_C
 | 
			
		||||
#define MBEDTLS_ECJPAKE_C
 | 
			
		||||
#define MBEDTLS_ECP_C
 | 
			
		||||
#define MBEDTLS_ENTROPY_C
 | 
			
		||||
 | 
			
		||||
@ -39,14 +39,19 @@
 | 
			
		||||
 | 
			
		||||
#include <string.h>
 | 
			
		||||
 | 
			
		||||
#if defined(MBEDTLS_SELF_TEST) && defined(MBEDTLS_AES_C)
 | 
			
		||||
 | 
			
		||||
#if defined(MBEDTLS_PLATFORM_C)
 | 
			
		||||
#include "mbedtls/platform.h"
 | 
			
		||||
#else
 | 
			
		||||
#include <stdlib.h>
 | 
			
		||||
#define mbedtls_calloc     calloc
 | 
			
		||||
#define mbedtls_free       free
 | 
			
		||||
#if defined(MBEDTLS_SELF_TEST) && ( defined(MBEDTLS_AES_C) || defined(MBEDTLS_DES_C) )
 | 
			
		||||
#include <stdio.h>
 | 
			
		||||
#define mbedtls_printf     printf
 | 
			
		||||
#endif /* defined(MBEDTLS_SELF_TEST) && ( defined(MBEDTLS_AES_C) || defined(MBEDTLS_DES_C) )*/
 | 
			
		||||
#endif /* MBEDTLS_PLATFORM_C */
 | 
			
		||||
#endif /* MBEDTLS_SELF_TEST && MBEDTLS_AES_C */
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
/* Implementation that should never be optimized out by the compiler */
 | 
			
		||||
static void mbedtls_zeroize( void *v, size_t n ) {
 | 
			
		||||
 | 
			
		||||
@ -279,8 +279,11 @@ int main( int argc, char *argv[] )
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#if defined(MBEDTLS_CMAC_C) && ( defined(MBEDTLS_AES_C) || defined(MBEDTLS_DES_C) )
 | 
			
		||||
    if( ( ret = mbedtls_cmac_self_test( v ) ) != 0 )
 | 
			
		||||
        return( ret );
 | 
			
		||||
    if( ( mbedtls_cmac_self_test( v ) ) != 0 )
 | 
			
		||||
    {
 | 
			
		||||
        suites_failed++;
 | 
			
		||||
    }
 | 
			
		||||
    suites_tested++;
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#if defined(MBEDTLS_BASE64_C)
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user