From 30bd01fe2a005eaca3726d27a23818b4b5013e8d Mon Sep 17 00:00:00 2001 From: nishi Date: Sun, 7 Jul 2024 17:46:06 +0000 Subject: [PATCH] add djgpp to supported git-svn-id: file:///raid/svn-main/nishi-dataworks/trunk@454 d4a5a174-5a4a-5b4b-b672-37683c10d7d5 --- Library/dataworks.c | 2 ++ Makefiles/Platforms/djgpp.mk | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Library/dataworks.c b/Library/dataworks.c index 29c08e1..e386693 100644 --- a/Library/dataworks.c +++ b/Library/dataworks.c @@ -58,6 +58,8 @@ const char* dataworks_platform = "WatcomC/" const char* dataworks_platform = "MacOSX/" #elif defined(__minix) const char* dataworks_platform = "Minix/" +#elif defined(DJGPP) +const char* dataworks_platform = "DJGPP/" #elif defined(__VBCC__) #else #undef SUPPORTED diff --git a/Makefiles/Platforms/djgpp.mk b/Makefiles/Platforms/djgpp.mk index 934d355..a4ddf24 100644 --- a/Makefiles/Platforms/djgpp.mk +++ b/Makefiles/Platforms/djgpp.mk @@ -7,3 +7,5 @@ AR = i586-pc-msdosdjgpp-ar SERVER = RCLI = EXEC_SUFFIX = .exe +PLATFORM_M = dos +PLATFORM_P = dos -- 2.43.0