1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-07 15:41:55 +00:00

Check for existence of libcdio_paranoia, not libcdio, since the former is

what we actually need.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20611 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2006-11-02 18:12:19 +00:00
parent 25106020f2
commit 6988f3c1a3

2
configure vendored
View File

@ -5329,7 +5329,7 @@ EOF
cc_check $_ld_tmp $_ld_lm \
&& _libcdio=yes && _ld_libcdio="$_ld_tmp" && break
done
if test "$_libcdio" = no && $_pkg_config --exists libcdio ; then
if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
_inc_tmp=`$_pkg_config --cflags libcdio_paranoia`;
_ld_tmp=`$_pkg_config --libs libcdio_paranoia`;
cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \