diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2024-12-09 19:27:40 -0500 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2024-12-09 19:28:21 -0500 |
commit | da8bde0860decc6a5d1d1f39ae3b3c6a4cf1044b (patch) | |
tree | f6f4749c42e6ee728484c864638a49e802363721 | |
parent | e3323e3ba7280e5d624a2ba63603344508e2f2d8 (diff) | |
download | rockbox-da8bde0860.tar.gz rockbox-da8bde0860.zip |
puzzles: Disable "unfinished" puzzles for Windows builds
They rely on weak symbols which the windows linker doesn't like.
Change-Id: Id24ed5553e393f9140b4e7cd256cafe64d3656e3
-rw-r--r-- | apps/plugins/puzzles/SOURCES | 2 | ||||
-rw-r--r-- | apps/plugins/puzzles/SOURCES.games | 2 | ||||
-rw-r--r-- | apps/plugins/puzzles/SOURCES.rockbox | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/apps/plugins/puzzles/SOURCES b/apps/plugins/puzzles/SOURCES index dfbd184ba2..9ff0130f58 100644 --- a/apps/plugins/puzzles/SOURCES +++ b/apps/plugins/puzzles/SOURCES @@ -3,7 +3,9 @@ rockbox.c rbwrappers.c rbmalloc.c lz4tiny.c +#ifndef WIN32 dummy/nullhelp.c +#endif /* puzzles core sources */ src/combi.c diff --git a/apps/plugins/puzzles/SOURCES.games b/apps/plugins/puzzles/SOURCES.games index 70f34f3334..e515050a94 100644 --- a/apps/plugins/puzzles/SOURCES.games +++ b/apps/plugins/puzzles/SOURCES.games @@ -35,8 +35,10 @@ src/undead.c src/unequal.c src/unruly.c src/untangle.c +#ifndef WIN32 src/unfinished/slide.c src/unfinished/sokoban.c +#endif /* no c200v2 */ #if PLUGIN_BUFFER_SIZE > 0x14000 diff --git a/apps/plugins/puzzles/SOURCES.rockbox b/apps/plugins/puzzles/SOURCES.rockbox index 61ce4275ff..17f39f20c9 100644 --- a/apps/plugins/puzzles/SOURCES.rockbox +++ b/apps/plugins/puzzles/SOURCES.rockbox @@ -2,4 +2,6 @@ rockbox.c rbwrappers.c rbmalloc.c lz4tiny.c +#ifndef WIN32 dummy/nullhelp.c +#endif |