There is something fishy in the configure process.
Even after a "clean" and deleting the (very old) sdl-audiocd.o in backends/audiocd/sdl/ it's not being picked up (no object file created)
Looking at module.mk in backends i see it mention sdl-audiocd.o but it won't get build, strange
Code: Select all
# SDL 2 removed audio CD support
ifndef USE_SDL2
MODULE_OBJS += \
audiocd/sdl/sdl-audiocd.o
endif
I guess it's the "ifndef" that is failing, i have a correct "USE_SDL2 = 0" in config.mk, but since this is the ONLY "ifndef" in the whole module.mk i blame this to be the problem (and most certainly something that fails on my system)
I'm going to add it manually to module.mk and see if it works that way