bump RTP packet size a bit
[disorder] / server / speaker.c
index 75e9cd7..41a12e5 100644 (file)
@@ -372,7 +372,7 @@ int addfd(int fd, int events) {
 
 /** @brief Table of speaker backends */
 static const struct speaker_backend *backends[] = {
-#if API_ALSA
+#if HAVE_ALSA_ASOUNDLIB_H
   &alsa_backend,
 #endif
   &command_backend,
@@ -380,6 +380,9 @@ static const struct speaker_backend *backends[] = {
 #if HAVE_COREAUDIO_AUDIOHARDWARE_H
   &coreaudio_backend,
 #endif
+#if HAVE_SYS_SOUNDCARD_H
+  &oss_backend,
+#endif
   0
 };