Index: squeezeplay_baby/src/common.h =================================================================== --- squeezeplay_baby/src/common.h (revision 8691) +++ squeezeplay_baby/src/common.h (working copy) @@ -8,6 +8,8 @@ #ifndef SQUEEZEPLAY_JIVE_COMMON_H #define SQUEEZEPLAY_JIVE_COMMON_H +#define RADIO 1 + #include "config.h" #include Index: squeezeplay/src/audio/decode/decode_alac.c =================================================================== --- squeezeplay/src/audio/decode/decode_alac.c (revision 8691) +++ squeezeplay/src/audio/decode/decode_alac.c (working copy) @@ -166,8 +166,16 @@ } +#ifdef RADIO + // FIXME alac does not work fully yet, see Bug 12421 struct decode_module decode_alac = { + '-' +}; + +#else + +struct decode_module decode_alac = { 'l', "alc", decode_alac_start, @@ -175,3 +183,5 @@ decode_alac_samples, decode_alac_callback, }; + +#endif