mirror of
https://github.com/mpv-player/mpv
synced 2025-01-18 04:51:52 +00:00
Use pkg-config to detect theora dependencies.
patch by j -- at -- thing -- dot -- net git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16661 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
a547ff46c0
commit
0d7300028e
10
configure
vendored
10
configure
vendored
@ -5286,10 +5286,11 @@ elif test "$_vorbis" = yes -a "$_tremor" = yes ; then
|
||||
fi
|
||||
echores "$_vorbis"
|
||||
|
||||
echocheck "OggTheora support (only the CVS version!)"
|
||||
echocheck "OggTheora support"
|
||||
if test "$_theora" = auto ; then
|
||||
_theora=no
|
||||
cat > $TMPC << EOF
|
||||
if ( pkg-config --exists 'theora' ) >> "$TMPLOG" 2>&1 ; then
|
||||
cat > $TMPC << EOF
|
||||
#include <theora/theora.h>
|
||||
#include <string.h>
|
||||
int main(void)
|
||||
@ -5323,12 +5324,13 @@ int main(void)
|
||||
return 0;
|
||||
}
|
||||
EOF
|
||||
cc_check -ltheora -logg $_ld_lm && _theora=yes
|
||||
cc_check `pkg-config --libs --cflags theora` && _theora=yes
|
||||
fi
|
||||
fi
|
||||
if test "$_theora" = yes ; then
|
||||
_def_theora='#define HAVE_OGGTHEORA 1'
|
||||
_codecmodules="libtheora $_codecmodules"
|
||||
_ld_theora="-ltheora -logg"
|
||||
_ld_theora=`pkg-config --libs --cflags theora`
|
||||
else
|
||||
_def_theora='#undef HAVE_OGGTHEORA'
|
||||
_nocodecmodules="libtheora $_nocodecmodules"
|
||||
|
Loading…
Reference in New Issue
Block a user