From f5f3b3f5d1a1844958c3c5dfd69de5af47890b8f Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sun, 25 Oct 2020 00:26:54 +1000 Subject: [PATCH] dep/cubeb: Add missing oss_i4_v4.c test file --- dep/cubeb/cmake/compile_tests/oss_is_v4.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 dep/cubeb/cmake/compile_tests/oss_is_v4.c diff --git a/dep/cubeb/cmake/compile_tests/oss_is_v4.c b/dep/cubeb/cmake/compile_tests/oss_is_v4.c new file mode 100644 index 000000000..a46bb1554 --- /dev/null +++ b/dep/cubeb/cmake/compile_tests/oss_is_v4.c @@ -0,0 +1,10 @@ +#include + +#if SOUND_VERSION < 0x040000 +# error "OSSv4 is not available in sys/soundcard.h" +#endif + +int main() +{ + return 0; +}