default to built-in TLS without preventing other choices

This commit is contained in:
Sergio R. Caprile 2024-11-13 17:29:44 -03:00
parent 85414cfec2
commit 7e668df1fe

View File

@ -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