[Scummvm-git-logs] scummvm master -> adb53dc3db3ed85399d09e3c0762ddb5524c3873
mikrosk
noreply at scummvm.org
Tue Apr 21 04:28:03 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
adb53dc3db CONFIGURE: Don't put ATARI in config.h / config.mk
Commit: adb53dc3db3ed85399d09e3c0762ddb5524c3873
https://github.com/scummvm/scummvm/commit/adb53dc3db3ed85399d09e3c0762ddb5524c3873
Author: Miro Kropacek (miro.kropacek at gmail.com)
Date: 2026-04-21T14:27:47+10:00
Commit Message:
CONFIGURE: Don't put ATARI in config.h / config.mk
The former lead to nasty bugs if config.h isn't included and the latter
can be easily replaced with ifeq ($(BACKEND),atari).
Changed paths:
configure
graphics/module.mk
diff --git a/configure b/configure
index ab956de19f1..5fabcb57136 100755
--- a/configure
+++ b/configure
@@ -4228,7 +4228,7 @@ case $_backend in
fi
;;
atari)
- define_in_config_if_yes yes "ATARI"
+ append_var DEFINES "-DATARI"
append_var DEFINES "-DDISABLE_NES_APU"
#append_var DEFINES "-DDISABLE_DOSBOX_OPL"
append_var LIBS "-lgem"
diff --git a/graphics/module.mk b/graphics/module.mk
index 5e4a60e89a2..04725fcaaa3 100644
--- a/graphics/module.mk
+++ b/graphics/module.mk
@@ -194,7 +194,7 @@ endif
endif
-ifdef ATARI
+ifeq ($(BACKEND),atari)
MODULE_OBJS += \
blit/blit-atari.o
endif
More information about the Scummvm-git-logs
mailing list