linux-headers: bump 4.{4, 9, 10}.x series
[buildroot-gz.git] / package / flite / 0003-fix-alsa-version-check.patch
blob8832ac371c45c9ed7ad3fc35ecc295058627cf5d
1 [PATCH] fix alsa version check
3 Check the entire alsa version, and not just the subminor - As this broke
4 with the recent alsa 1.0.x -> 1.1.0 release.
6 It is not clear what major/minor versions the check was supposed to be
7 against (0.9 or 1.0). I went with 1.0.11 to be on the safe side.
9 Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 ---
11 flite-1.4-release/configure.in | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
14 Index: flite-1.4/flite-1.4-release/configure.in
15 ===================================================================
16 --- flite-1.4.orig/flite-1.4-release/configure.in
17 +++ flite-1.4/flite-1.4-release/configure.in
18 @@ -270,7 +270,7 @@
19 # the one I know -- you can still specific --with-audio=alsa
20 AC_TRY_COMPILE([#include <alsa/version.h>],
21 [int j=
22 - #if SND_LIB_SUBMINOR >= 11
23 + #if SND_LIB_VERSION >= 0x1000b
25 #endif],
26 [AUDIODRIVER="alsa"