1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-30 22:43:08 +03:00

Add the x509_oid module to the build

Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
Gilles Peskine
2025-05-07 20:36:20 +02:00
parent 86e45ba0ba
commit d2fe51cfc4
3 changed files with 3 additions and 1 deletions

View File

@ -6,6 +6,7 @@ set(src_x509
x509_crl.c
x509_crt.c
x509_csr.c
x509_oid.c
x509write.c
x509write_crt.c
x509write_csr.c

View File

@ -198,6 +198,7 @@ OBJS_X509= \
x509_crl.o \
x509_crt.o \
x509_csr.o \
x509_oid.o \
x509write.o \
x509write_crt.o \
x509write_csr.o \

View File

@ -7,7 +7,7 @@
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
*/
#include "common.h"
#include "x509_internal.h"
#if defined(MBEDTLS_OID_C)