diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-11-23 23:29:27 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-11-23 23:29:27 +0000 |
commit | bd0fdced046b3b7abd5471aadc1d67190133940a (patch) | |
tree | 7bdaf2f88b802e6f8c6226be100cea7b93c503b3 | |
parent | 4f591c826f6daad4913c24fee3699224ff8be0d5 (diff) | |
download | xine-lib-bd0fdced046b3b7abd5471aadc1d67190133940a.tar.gz xine-lib-bd0fdced046b3b7abd5471aadc1d67190133940a.tar.bz2 |
accept alsa 0.9 and 1.0 (thanks to Chris Rankin <rankincj@yahoo.com> to find this problem)
CVS patchset: 5776
CVS date: 2003/11/23 23:29:27
-rw-r--r-- | m4/alsa.m4 | 3 |
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; |