This is an automated email from the ASF dual-hosted git repository.
michallenc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push:
new 687018670 graphics/microwindows: fix missing HAVE_FNT_SUPPORT in
Makefile
687018670 is described below
commit 68701867076ff1e28b16899818335ad7cdea6152
Author: Acfboy <[email protected]>
AuthorDate: Wed Jul 29 23:51:31 2026 +0800
graphics/microwindows: fix missing HAVE_FNT_SUPPORT in Makefile
Without this Make variable, Objects.rules does not add font_fnt.o
to the build, causing undefined reference to fnt_createfont at link time.
Signed-off-by: Acfboy <[email protected]>
---
graphics/microwindows/Makefile | 2 ++
1 file changed, 2 insertions(+)
diff --git a/graphics/microwindows/Makefile b/graphics/microwindows/Makefile
index 5dae89ac0..2ea7e4c1a 100644
--- a/graphics/microwindows/Makefile
+++ b/graphics/microwindows/Makefile
@@ -108,6 +108,8 @@ else ifeq ($(CONFIG_MICROWINDOWS_MOUSE_CUSTOM),y)
MOUSE = CUSTOM
endif
+HAVE_FNT_SUPPORT = Y
+
-include microwindows/src/engine/Objects.rules
-include microwindows/src/drivers/Objects.rules
-include microwindows/src/fonts/Objects.rules