Files
Sergio Ammirata f09bac21b7 fix(mbedtls): suppress -Wunguarded-availability for bundled build
mbedtls 3.6 uses clock_gettime(CLOCK_MONOTONIC) in platform_util.c
which requires iOS 10.0+.  When VLC contribs build with
-Werror=partial-availability and a deployment target of iOS 9.0,
this becomes a hard error.

The runtime fallback already handles the case correctly:
clock_gettime returns -1 on older iOS and mbedtls_ms_time() falls
back to time(NULL) * 1000.

Suppress -Wunguarded-availability for the bundled mbedcrypto static
library only, consistent with the six other warning suppressions
already applied to the bundled build.
2026-05-30 19:11:35 -04:00
..
2020-05-28 16:35:40 +02:00
2025-10-08 08:03:03 +02:00