summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--m4/alsa.m43
1 files changed, 2 insertions, 1 deletions
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;