Skip to content

Commit

Permalink
alsatest: Fix the check to treat alsalib 1.1.x as correct version
Browse files Browse the repository at this point in the history
Task-number: QTBUG-51681
Change-Id: I63266c33342f02f4d1a5ea5786f5fbc5a1b421b3
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
  • Loading branch information
mitya57 committed Mar 7, 2016
1 parent bceb1b2 commit b8f98d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.tests/unix/alsa/alsatest.cpp
Expand Up @@ -32,7 +32,7 @@
****************************************************************************/

#include <alsa/asoundlib.h>
#if(!(SND_LIB_MAJOR == 1 && SND_LIB_MINOR == 0 && SND_LIB_SUBMINOR >= 10))
#if SND_LIB_VERSION < 0x1000a // 1.0.10
#error "Alsa version found too old, require >= 1.0.10"
#endif

Expand Down

0 comments on commit b8f98d9

Please sign in to comment.