comparison configure @ 21434:efa3a5d013fe

Remove warning about missing codecs directory, the condition is always true.
author diego
date Sat, 02 Dec 2006 20:49:35 +0000
parents 8618755f2c06
children d4f3d52bedbf
comparison
equal deleted inserted replaced
21433:51975bc20a27 21434:efa3a5d013fe
8284 if test "$_mtrr" = yes ; then 8284 if test "$_mtrr" = yes ; then
8285 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$_doc_lang/video.html#mtrr)" 8285 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$_doc_lang/video.html#mtrr)"
8286 echo 8286 echo
8287 fi 8287 fi
8288 8288
8289 if x86; then 8289 if not x86; then
8290 if test "$_win32" = no ; then
8291 if test "$_win32codecsdir" ; then
8292 echo "Failed to find a Win32 codecs directory at $_win32codecsdir!"
8293 else
8294 echo "Failed to find a Win32 codecs directory! (default: /usr/local/lib/codecs/)"
8295 fi
8296 cat << EOF
8297 Create it and copy the DLL files there! You can download the codecs from our
8298 homepage at http://www.mplayerhq.hu/MPlayer/releases/codecs/
8299
8300 EOF
8301 fi
8302 else
8303 cat <<EOF 8290 cat <<EOF
8304 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your 8291 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8305 operating system ($system_name). You may encounter a few files that cannot 8292 operating system ($system_name). You may encounter a few files that cannot
8306 be played due to missing open source video/audio codec support. 8293 be played due to missing open source video/audio codec support.
8307 8294