fixed ogg vorbis detection message
This commit is contained in:
parent
11a5274f61
commit
d058b39076
1 changed files with 3 additions and 3 deletions
6
setup
6
setup
|
@ -617,15 +617,15 @@ case $ANSWER in
|
|||
esac
|
||||
else
|
||||
LIBCHECK="-lvorbisfile"; check_for_libs
|
||||
if test "$?" = 0 ; then
|
||||
if test "$?" != 0 ; then
|
||||
echo -n "libvorbisfile "
|
||||
fi
|
||||
LIBCHECK="-lvorbis"; check_for_libs
|
||||
if test "$?" = 0 ; then
|
||||
if test "$?" != 0 ; then
|
||||
echo -n "libvorbis "
|
||||
fi
|
||||
LIBCHECK="-logg"; check_for_libs
|
||||
if test "$?" = 0 ; then
|
||||
if test "$?" != 0 ; then
|
||||
echo -n "libogg "
|
||||
fi
|
||||
echo "not found"
|
||||
|
|
Loading…
Add table
Reference in a new issue