From 7e668df1fe7aa33b47616cc5b7588e6ca2d5f2cc Mon Sep 17 00:00:00 2001 From: "Sergio R. Caprile" Date: Wed, 13 Nov 2024 17:29:44 -0300 Subject: [PATCH] default to built-in TLS without preventing other choices --- tutorials/mqtt/mqtt-client-aws-iot/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tutorials/mqtt/mqtt-client-aws-iot/Makefile b/tutorials/mqtt/mqtt-client-aws-iot/Makefile index ed372a0e..3edcbfdb 100644 --- a/tutorials/mqtt/mqtt-client-aws-iot/Makefile +++ b/tutorials/mqtt/mqtt-client-aws-iot/Makefile @@ -4,6 +4,8 @@ OUT ?= -o $(PROG) # Compiler argument for output file CFLAGS = -W -Wall -Wextra -g -I. # Build options SOURCES = main.c mongoose.c mongoose_fs.c +CFLAGS_EXTRA ?= -DMG_TLS=MG_TLS_BUILTIN + # Mongoose build options. See https://mongoose.ws/documentation/#build-options CFLAGS_MONGOOSE += -DMG_ENABLE_PACKED_FS=1