From ff32780077ddb0d99906d3094ffe5b9a10805180 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Mon, 24 Apr 2023 21:33:19 -0500 Subject: [PATCH] Bugfix: Featureless Make stand alone build fails to compile due to missing f_string_append_nulless(). A recent change must have introduced a dependency for f_string_append_nulless(). Disable the associated disable define. --- build/stand_alone/fake.config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/stand_alone/fake.config.h b/build/stand_alone/fake.config.h index a0f7753..89745b5 100644 --- a/build/stand_alone/fake.config.h +++ b/build/stand_alone/fake.config.h @@ -821,7 +821,7 @@ #define _di_f_string_append_assure_ #define _di_f_string_append_assure_nulless_ #define _di_f_string_append_mash_ -#define _di_f_string_append_nulless_ +//#define _di_f_string_append_nulless_ //#define _di_f_string_ascii_s_ #define _di_f_string_constant_t_ #define _di_f_string_dynamic_adjust_ -- 1.8.3.1