A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd

make the gcc work-around somewhat more inclusive for gcc 4.2.X where X is 1 or bigger


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16238 a1c6a512-1295-4272-9138-f99709370657

+3 -2
+3 -2
apps/codecs/libfaad/cfft.c
··· 847 847 } 848 848 } 849 849 850 - #if (__GNUC__ == 4) && (__GNUC_MINOR__ == 2) && (__GNUC_PATCHLEVEL__ == 3) 850 + #if (__GNUC__ == 4) && (__GNUC_MINOR__ == 2) && (__GNUC_PATCHLEVEL__ >= 1) 851 851 /* To me (Daniel S) this looks like a compiler error/problem so we only 852 - silence it this way on this specific compiler version we know causes this */ 852 + silence it this way on this specific compiler version we know causes this 853 + Known to happen for 4.2.1 until 4.2.3 */ 853 854 #define COMPLEXPTR *(const complex_t **) 854 855 #else 855 856 #define COMPLEXPTR (const complex_t *)