summaryrefslogtreecommitdiffstats
path: root/old-configure
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-12-02 00:21:59 +0100
committerwm4 <wm4@nowhere>2013-12-02 00:21:59 +0100
commitcb45ea371fb8ff9fd62026dcf060587864c56586 (patch)
treea204774be55e5103b6accf8cfae9e8c47050a2f0 /old-configure
parentdc582f2505d7583f414dcfa777371f986de381d3 (diff)
downloadmpv-cb45ea371fb8ff9fd62026dcf060587864c56586.tar.bz2
mpv-cb45ea371fb8ff9fd62026dcf060587864c56586.tar.xz
build: reject broken roaraudio sndio emulation
roaraudio has some sort of sndio emulation, but apparently its header file is either blatantly broken, or an old version from the past. The sio_onvol() function has the wrong return type (void instead of int), and the SIO_DEVANY symbol is missing entirely. This broke the build, because the configure check was successful anyway.
Diffstat (limited to 'old-configure')
-rwxr-xr-xold-configure2
1 files changed, 1 insertions, 1 deletions
diff --git a/old-configure b/old-configure
index 731cd0c6d1..526991e72d 100755
--- a/old-configure
+++ b/old-configure
@@ -2260,7 +2260,7 @@ fi
echocheck "sndio"
if test "$_sndio" = auto ; then
_sndio=no
- statement_check sndio.h 'struct sio_par par; sio_initpar(&par);' -lsndio && _sndio=yes
+ statement_check sndio.h 'struct sio_par par; sio_initpar(&par); const char *s = SIO_DEVANY' -lsndio && _sndio=yes
fi
echores "$_sndio"