1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-21 10:51:51 +00:00

configure: Ignore possible errors from dvdread-config invocation

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32290 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2010-09-17 10:35:15 +00:00 committed by Uoti Urpala
parent 386c15a409
commit 3a5a47ccc2

4
configure vendored
View File

@ -5646,8 +5646,8 @@ if test "$_dvdread_internal" = auto ; then
elif test "$_dvdread" = auto ; then
_dvdread=no
if test "$_dl" = yes; then
_dvdreadcflags=$($_dvdreadconfig --cflags)
_dvdreadlibs=$($_dvdreadconfig --libs)
_dvdreadcflags=$($_dvdreadconfig --cflags 2> /dev/null)
_dvdreadlibs=$($_dvdreadconfig --libs 2> /dev/null)
if header_check dvdread/dvd_reader.h $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
_dvdread=yes
extra_cflags="$extra_cflags $_dvdreadcflags"