From 828f1884b463c49eb39b7f63def0e4bda15d11c6 Mon Sep 17 00:00:00 2001 From: CeRiAl Date: Sun, 3 Jul 2011 23:01:17 +0200 Subject: MACOSX: Add Sparkle support --- backends/module.mk | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'backends/module.mk') diff --git a/backends/module.mk b/backends/module.mk index 63774cc4d0..d8b423a67a 100644 --- a/backends/module.mk +++ b/backends/module.mk @@ -15,7 +15,8 @@ MODULE_OBJS := \ midi/timidity.o \ saves/savefile.o \ saves/default/default-saves.o \ - timer/default/default-timer.o + timer/default/default-timer.o \ + updates/sparkle-updates.o ifdef USE_ELF_LOADER @@ -87,7 +88,8 @@ endif ifdef MACOSX MODULE_OBJS += \ midi/coreaudio.o \ - midi/coremidi.o + midi/coremidi.o \ + updates/macosx/macosx-updates.o endif ifdef WIN32 -- cgit v1.2.3 From 7e7e6069193fead17d0865d252400b6826805ffc Mon Sep 17 00:00:00 2001 From: Oystein Eftevaag Date: Tue, 2 Aug 2011 21:00:57 -0400 Subject: MACOSX: Turned update support off by default, simplified and cleaned the pull request --- backends/module.mk | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'backends/module.mk') diff --git a/backends/module.mk b/backends/module.mk index d8b423a67a..0e944262f5 100644 --- a/backends/module.mk +++ b/backends/module.mk @@ -15,8 +15,7 @@ MODULE_OBJS := \ midi/timidity.o \ saves/savefile.o \ saves/default/default-saves.o \ - timer/default/default-timer.o \ - updates/sparkle-updates.o + timer/default/default-timer.o ifdef USE_ELF_LOADER -- cgit v1.2.3 From dedc74abfa44f7dac344da1868588193f91dd4f1 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Mon, 8 Aug 2011 21:43:53 +0200 Subject: SDL: Add a new base class for graphics managers utilizing SDL. --- backends/module.mk | 1 + 1 file changed, 1 insertion(+) (limited to 'backends/module.mk') diff --git a/backends/module.mk b/backends/module.mk index 0e944262f5..7a8aab8b6a 100644 --- a/backends/module.mk +++ b/backends/module.mk @@ -61,6 +61,7 @@ endif ifdef SDL_BACKEND MODULE_OBJS += \ events/sdl/sdl-events.o \ + graphics/sdl/sdl-graphics.o \ graphics/surfacesdl/surfacesdl-graphics.o \ mixer/doublebuffersdl/doublebuffersdl-mixer.o \ mixer/sdl/sdl-mixer.o \ -- cgit v1.2.3 From 43059b18787cda6dfb6b13b90af276930c52d6d1 Mon Sep 17 00:00:00 2001 From: Chris Warren-Smith Date: Sat, 20 Aug 2011 10:41:32 +1000 Subject: BADA: Moved timer manager to backends/timer/bada --- backends/module.mk | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'backends/module.mk') diff --git a/backends/module.mk b/backends/module.mk index 7a8aab8b6a..e38b039aa2 100644 --- a/backends/module.mk +++ b/backends/module.mk @@ -117,6 +117,11 @@ MODULE_OBJS += \ mixer/sdl13/sdl13-mixer.o endif +ifeq ($(BACKEND),bada) +MODULE_OBJS += \ + timer/bada/timer.o +endif + ifeq ($(BACKEND),ds) MODULE_OBJS += \ fs/ds/ds-fs.o \ -- cgit v1.2.3