Mercurial > mplayer.hg
diff configure @ 12973:093afb92e4d5
LIVE.COM autodetection
author | wight |
---|---|
date | Mon, 09 Aug 2004 08:21:42 +0000 |
parents | 520c8675f033 |
children | 8639d064d3a1 |
line wrap: on
line diff
--- a/configure Sun Aug 08 23:22:29 2004 +0000 +++ b/configure Mon Aug 09 08:21:42 2004 +0000 @@ -169,7 +169,7 @@ --disable-network disable network support (for: http/mms/rtp) [enable] --enable-winsock2 enable winsock2 usage [autodetect] --enable-smb enable Samba (SMB) input support [autodetect] - --enable-live enable LIVE.COM Streaming Media support [disable] + --enable-live enable LIVE.COM Streaming Media support [autodetect] --disable-dvdread Disable libdvdread support [autodetect] --disable-mpdvdkit Disable mpdvdkit/mpdvdkit2 support [autodetect] --disable-cdparanoia Disable cdparanoia support [autodetect] @@ -1229,7 +1229,7 @@ _dvdkit=auto _xanim=auto _real=auto -_live=no +_live=auto _xinerama=auto _mga=auto _xmga=auto @@ -1573,7 +1573,6 @@ ;; --with-livelibdir=*) _livelibdir=`echo $ac_option | cut -d '=' -f 2` - _live=yes ;; --with-mlibdir=*) _mlibdir=`echo $ac_option | cut -d '=' -f 2` @@ -5169,11 +5168,21 @@ echocheck "LIVE.COM Streaming Media libraries" if test "$_live" = auto && test "$_network" = yes ; then - _live=yes - test "$_livelibdir" || _live=no - # TODO: deeper, more reliable test of libs, and version! - # (users may have empty live/ dir or something different there, for - # example 'live config files', or they may have old, incompatibel version) + _TMPC=$TMPC + TMPC=$TMPCPP + cat >$TMPC <<EOF +#include <liveMedia.hh> +#if (LIVEMEDIA_LIBRARY_VERSION_INT < 1090195200) +#error Please upgrade to version 2004.07.19 or later of the "LIVE.COM Streaming Media" libraries - available from <www.live.com/liveMedia/> +#endif +int main(void) {} +EOF + if cc_check -I$_livelibdir/liveMedia/include/ -I$_livelibdir/UsageEnvironment/include -I$_livelibdir/groupsock/include; then + _live=yes + else + _live=no + fi + TMPC=$_TMPC fi if test "$_live" = yes && test "$_network" = yes ; then echores "yes (using $_livelibdir)"