[MPlayer-cvslog] CVS: main configure,1.1168,1.1169

Diego Biurrun CVS syncmail at mplayerhq.hu
Sat Apr 22 19:31:13 CEST 2006


CVS change done by Diego Biurrun CVS

Update of /cvsroot/mplayer/main
In directory mail:/var2/tmp/cvs-serv32462

Modified Files:
	configure 
Log Message:
Make static libavutil detection semantics explicit.


Index: configure
===================================================================
RCS file: /cvsroot/mplayer/main/configure,v
retrieving revision 1.1168
retrieving revision 1.1169
diff -u -r1.1168 -r1.1169
--- configure	22 Apr 2006 15:13:51 -0000	1.1168
+++ configure	22 Apr 2006 17:31:10 -0000	1.1169
@@ -1463,6 +1463,7 @@
 # GOTCHA: the variables below defines the default behavior for autodetection
 # and have - unless stated otherwise - at least 2 states : yes no
 # If autodetection is available then the third state is: auto
+_libavutil=auto
 _libavcodec=auto
 _amr_nb=auto
 _amr_nb_fixed=auto
@@ -5979,10 +5980,12 @@
 
 
 echocheck "FFmpeg libavutil (static)"
-if test -d libavutil ; then
-  _libavutil=yes
-else
-  _libavutil=no
+if test "$_libavutil" = auto ; then
+  if test -d libavutil ; then
+    _libavutil=yes
+  else
+    _libavutil=no
+  fi
 fi
 echores "$_libavutil"
 




More information about the MPlayer-cvslog mailing list