From 751b58915836a887eef78fa687f4d88af2b26177 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Deuc=D0=B5?= <shurd@sasktel.net> Date: Tue, 28 Jan 2025 01:14:17 -0500 Subject: [PATCH] Fix WITH_RETRO for Win32 --- src/syncterm/GNUmakefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/syncterm/GNUmakefile b/src/syncterm/GNUmakefile index 8b41ce36bb..cee4b593df 100644 --- a/src/syncterm/GNUmakefile +++ b/src/syncterm/GNUmakefile @@ -153,7 +153,9 @@ ifdef win endif ifdef WITH_RETRO - LDFLAGS += -shared + ifndef win + LDFLAGS += -shared + endif endif $(MTOBJODIR)$(DIRSEP)ciolib_res$(OFILE): ${CIOLIB-MT} -- GitLab