From bd0fdced046b3b7abd5471aadc1d67190133940a Mon Sep 17 00:00:00 2001 From: Daniel Caujolle-Bert Date: Sun, 23 Nov 2003 23:29:27 +0000 Subject: accept alsa 0.9 and 1.0 (thanks to Chris Rankin to find this problem) CVS patchset: 5776 CVS date: 2003/11/23 23:29:27 --- m4/alsa.m4 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/m4/alsa.m4 b/m4/alsa.m4 index efa734856..eca833472 100644 --- a/m4/alsa.m4 +++ b/m4/alsa.m4 @@ -217,7 +217,8 @@ int main() { #define SND_LIB_MINOR SOUNDLIB_VERSION_MINOR #endif - if((SND_LIB_MAJOR >= 0) && (SND_LIB_MINOR >= 9)) + if(((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9)) || + ((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))) return 0; return 1; -- cgit v1.2.3