0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

variable renaming cosmetics: _have_yasm --> have_yasm

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30894 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2010-03-14 23:39:02 +00:00
parent 7d51464c27
commit ee2ac03ccc

6
configure vendored
View File

@ -2681,11 +2681,11 @@ echo "pabsw xmm0, xmm0" > $TMPS
yasm_check || _yasm=""
if test $_yasm ; then
def_yasm='#define HAVE_YASM 1'
_have_yasm="yes"
have_yasm="yes"
echores "$_yasm"
else
def_yasm='#define HAVE_YASM 0'
_have_yasm="no"
have_yasm="no"
echores "no"
fi
@ -8737,7 +8737,7 @@ CONFIG_ZLIB=$_zlib
HAVE_PTHREADS = $_pthreads
HAVE_SHM = $_shm
HAVE_W32THREADS = $_w32threads
HAVE_YASM = $_have_yasm
HAVE_YASM = $have_yasm
$(echo $_libavdecoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
$(echo $_libavencoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')