mirror of
https://github.com/libretro/RetroArch
synced 2025-02-10 12:40:03 +00:00
(deps/mbedtls) Cleanups
This commit is contained in:
parent
da29ab063e
commit
473f43daf7
3
deps/mbedtls/mbedtls/compat-1.3.h
vendored
3
deps/mbedtls/mbedtls/compat-1.3.h
vendored
@ -495,9 +495,6 @@
|
|||||||
#if defined MBEDTLS_THREADING_PTHREAD
|
#if defined MBEDTLS_THREADING_PTHREAD
|
||||||
#define POLARSSL_THREADING_PTHREAD MBEDTLS_THREADING_PTHREAD
|
#define POLARSSL_THREADING_PTHREAD MBEDTLS_THREADING_PTHREAD
|
||||||
#endif
|
#endif
|
||||||
#if defined MBEDTLS_TIMING_ALT
|
|
||||||
#define POLARSSL_TIMING_ALT MBEDTLS_TIMING_ALT
|
|
||||||
#endif
|
|
||||||
#if defined MBEDTLS_TIMING_C
|
#if defined MBEDTLS_TIMING_C
|
||||||
#define POLARSSL_TIMING_C MBEDTLS_TIMING_C
|
#define POLARSSL_TIMING_C MBEDTLS_TIMING_C
|
||||||
#endif
|
#endif
|
||||||
|
20
deps/mbedtls/mbedtls/config.h
vendored
20
deps/mbedtls/mbedtls/config.h
vendored
@ -119,21 +119,6 @@
|
|||||||
* \{
|
* \{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
|
||||||
* \def MBEDTLS_TIMING_ALT
|
|
||||||
*
|
|
||||||
* Uncomment to provide your own alternate implementation for mbedtls_timing_hardclock(),
|
|
||||||
* mbedtls_timing_get_timer(), mbedtls_set_alarm(), mbedtls_set/get_delay()
|
|
||||||
*
|
|
||||||
* Only works if you have MBEDTLS_TIMING_C enabled.
|
|
||||||
*
|
|
||||||
* You will need to provide a header "timing_alt.h" and an implementation at
|
|
||||||
* compile time.
|
|
||||||
*/
|
|
||||||
#if 0
|
|
||||||
#define MBEDTLS_TIMING_ALT
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \def MBEDTLS_AES_ALT
|
* \def MBEDTLS_AES_ALT
|
||||||
*
|
*
|
||||||
@ -2212,11 +2197,6 @@
|
|||||||
#define MBEDTLS_ENTROPY_MIN_HARDWARE 32 /**< Default minimum number of bytes required for the hardware entropy source mbedtls_hardware_poll() before entropy is released */
|
#define MBEDTLS_ENTROPY_MIN_HARDWARE 32 /**< Default minimum number of bytes required for the hardware entropy source mbedtls_hardware_poll() before entropy is released */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Memory buffer allocator options */
|
|
||||||
#if 0
|
|
||||||
#define MBEDTLS_MEMORY_ALIGN_MULTIPLE 4 /**< Align on multiples of this value */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Platform options */
|
/* Platform options */
|
||||||
#if 0
|
#if 0
|
||||||
#define MBEDTLS_PLATFORM_STD_TIME time /**< Default time to use, can be undefined. MBEDTLS_HAVE_TIME must be enabled */
|
#define MBEDTLS_PLATFORM_STD_TIME time /**< Default time to use, can be undefined. MBEDTLS_HAVE_TIME must be enabled */
|
||||||
|
5
deps/mbedtls/mbedtls/timing.h
vendored
5
deps/mbedtls/mbedtls/timing.h
vendored
@ -29,7 +29,6 @@
|
|||||||
#include MBEDTLS_CONFIG_FILE
|
#include MBEDTLS_CONFIG_FILE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !defined(MBEDTLS_TIMING_ALT)
|
|
||||||
/* Regular implementation */
|
/* Regular implementation */
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
@ -116,10 +115,6 @@ int mbedtls_timing_get_delay( void *data );
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#else /* MBEDTLS_TIMING_ALT */
|
|
||||||
#include "timing_alt.h"
|
|
||||||
#endif /* MBEDTLS_TIMING_ALT */
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
4
deps/mbedtls/timing.c
vendored
4
deps/mbedtls/timing.c
vendored
@ -29,8 +29,6 @@
|
|||||||
|
|
||||||
#include "mbedtls/timing.h"
|
#include "mbedtls/timing.h"
|
||||||
|
|
||||||
#if !defined(MBEDTLS_TIMING_ALT)
|
|
||||||
|
|
||||||
#if !defined(unix) && !defined(__unix__) && !defined(__unix) && \
|
#if !defined(unix) && !defined(__unix__) && !defined(__unix) && \
|
||||||
!defined(__APPLE__) && !defined(_WIN32) && !defined(__HAIKU__)
|
!defined(__APPLE__) && !defined(_WIN32) && !defined(__HAIKU__)
|
||||||
#error "This module only works on Unix and Windows, see MBEDTLS_TIMING_C in config.h"
|
#error "This module only works on Unix and Windows, see MBEDTLS_TIMING_C in config.h"
|
||||||
@ -348,6 +346,4 @@ int mbedtls_timing_get_delay( void *data )
|
|||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* !MBEDTLS_TIMING_ALT */
|
|
||||||
|
|
||||||
#endif /* MBEDTLS_TIMING_C */
|
#endif /* MBEDTLS_TIMING_C */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user