output/sndio: define SIO_DEVANY if it is undefined

Fixes build failure on Debian Wheezy.
This commit is contained in:
Max Kellermann 2016-06-22 10:58:44 +02:00
parent d58c5dd398
commit 2c7bda8a3b

View File

@ -32,6 +32,11 @@
#include "util/Domain.hxx"
#include "Log.hxx"
#ifndef SIO_DEVANY
/* this macro is missing in libroar-dev 1.0~beta2-3 (Debian Wheezy) */
#define SIO_DEVANY "default"
#endif
class SndioOutput {
friend struct AudioOutputWrapper<SndioOutput>;
AudioOutput base;