From 354fb783e6d5ff9abcb6529cbb17cbb2ff6a7375 Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Wed, 7 May 2025 23:04:17 -0500 Subject: [PATCH] loader: ficl: restore isvirtualized? This word was accidentally removed when gfx bindings were made optional to remove some overhead not needed for all loaders. This one isn't graphics related, so we can safely restore it without irritating anyone. Reported by: sjg Reviewed by: adrian, imp Fixes: 9c8bf69a53f ("loader: Only create gfx 4th bindings when [...]") --- stand/ficl/loader.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stand/ficl/loader.c b/stand/ficl/loader.c index 69a65ebedb7..32ec2d6fc17 100644 --- a/stand/ficl/loader.c +++ b/stand/ficl/loader.c @@ -864,6 +864,9 @@ void ficlCompilePlatform(FICL_SYSTEM *pSys) dictAppendWord(dp, "ccall", ficlCcall, FW_DEFAULT); dictAppendWord(dp, "uuid-from-string", ficlUuidFromString, FW_DEFAULT); dictAppendWord(dp, "uuid-to-string", ficlUuidToString, FW_DEFAULT); +#ifndef TESTMAIN + dictAppendWord(dp, "isvirtualized?", ficlIsvirtualizedQ, FW_DEFAULT); +#endif SET_FOREACH(fnpp, X4th_compile_set) (*fnpp)(pSys);