[MPlayer-cvslog] r27288 - trunk/configure
reimar
subversion at mplayerhq.hu
Tue Jul 15 18:39:26 CEST 2008
Author: reimar
Date: Tue Jul 15 18:39:26 2008
New Revision: 27288
Log:
ALSA stupidly tries to define struct timeval and struct timespec, which
may cause compilation errors. Check for this and disable ALSA.
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure (original)
+++ trunk/configure Tue Jul 15 18:39:26 2008
@@ -5197,6 +5197,7 @@ echocheck "ALSA audio"
if test "$_alsa" != no ; then
_alsa=no
cat > $TMPC << EOF
+#include <sys/time.h>
#include <sys/asoundlib.h>
#if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
#error "alsa version != 0.5.x"
@@ -5206,6 +5207,7 @@ EOF
cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
cat > $TMPC << EOF
+#include <sys/time.h>
#include <sys/asoundlib.h>
#if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
#error "alsa version != 0.9.x"
@@ -5214,6 +5216,7 @@ int main(void) { return 0; }
EOF
cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
cat > $TMPC << EOF
+#include <sys/time.h>
#include <alsa/asoundlib.h>
#if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
#error "alsa version != 0.9.x"
@@ -5223,6 +5226,7 @@ EOF
cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
cat > $TMPC << EOF
+#include <sys/time.h>
#include <sys/asoundlib.h>
#if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
#error "alsa version != 1.0.x"
@@ -5231,6 +5235,7 @@ int main(void) { return 0; }
EOF
cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
cat > $TMPC << EOF
+#include <sys/time.h>
#include <alsa/asoundlib.h>
#if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
#error "alsa version != 1.0.x"
More information about the MPlayer-cvslog
mailing list