Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Change which macro is used to check for Windows targets

This fixes a false-positive on macOS that was caused by the macro "#define TARGET_OS_WIN32 0"

Change-Id: I1fcfb19b5aae4f63f00b9500094d619c4f7eea4b

authored by

Vencislav Atanasov and committed by
Solomon Peachy
1adadc94 9dce0c32

+2 -2
+1 -1
utils/jztool/Makefile
··· 21 21 22 22 CPPDEFINES := $(shell echo foo | $(CROSS)$(CC) -dM -E -) 23 23 24 - ifeq ($(findstring WIN32,$(CPPDEFINES)),WIN32) 24 + ifeq ($(findstring __WIN32__,$(CPPDEFINES)),__WIN32__) 25 25 # TODO: support Windows 26 26 else 27 27 ifeq ($(findstring APPLE,$(CPPDEFINES)),APPLE)
+1 -1
utils/mks5lboot/Makefile
··· 18 18 19 19 CPPDEFINES := $(shell echo foo | $(CROSS)$(CC) -dM -E -) 20 20 21 - ifeq ($(findstring WIN32,$(CPPDEFINES)),WIN32) 21 + ifeq ($(findstring __WIN32__,$(CPPDEFINES)),__WIN32__) 22 22 LDOPTS += -lsetupapi 23 23 # optional libusb support (needed for WinUSB and libusbK drivers) 24 24 ifeq ($(findstring MINGW,$(CPPDEFINES)),MINGW)