Fix compile error in linux
authorStefan Vogel <sv@exept.de>
Mon, 06 Jan 2020 14:49:20 +0100
changeset 5426 c9d3c51e1b53
parent 5425 17cec979acdf
child 5427 c39bc9b6d6b0
Fix compile error in linux
SoundStream.st
--- a/SoundStream.st	Mon Jan 06 14:29:53 2020 +0100
+++ b/SoundStream.st	Mon Jan 06 14:49:20 2020 +0100
@@ -125,6 +125,9 @@
 #ifdef SUPPORT_DEV_AUDIO
 # ifdef LINUX
 #  include <stdio.h>
+#  include <errno.h>
+#  include <signal.h>
+#  include <sys/ioctl.h>
 #  include <sys/soundcard.h>
 #  define DEV_AUDIO_DEFAULT_FREQ (8000)
 #  define DEV_AUDIO_DEFAULT_BUFFERSIZE (16384)