fixed ogg vorbis detection message

This commit is contained in:
nehalmistry 2002-05-20 20:05:35 +00:00
parent 11a5274f61
commit d058b39076

6
setup
View file

@ -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"