0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

missing C sources tests

termcap typo that was breaking autodetection


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2949 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
pl 2001-11-17 11:46:09 +00:00
parent 2bcae4d2db
commit 3f154384e6

11
configure vendored
View File

@ -981,6 +981,9 @@ echores "$_kstat"
echocheck "posix4" echocheck "posix4"
cat > $TMPC << EOF
int main(void) { return 0; }
EOF
_posix4=no _posix4=no
cc_check -lposix4 && _posix4=yes cc_check -lposix4 && _posix4=yes
if test "$_posix4" = yes ; then if test "$_posix4" = yes ; then
@ -1101,12 +1104,12 @@ echores "$_sys_soundcard"
echocheck "termcap" echocheck "termcap"
if test "$termcap" = auto ; then if test "$_termcap" = auto ; then
_termcap=no _termcap=no
cat > $TMPC <<EOF cat > $TMPC <<EOF
int main(void) { return 0; } int main(void) { return 0; }
EOF EOF
cc_check -ltermcap && _termcap=yes cc_check -ltermcap && _termcap=yes
else else
_termcap=no _termcap=no
fi fi
@ -1562,6 +1565,10 @@ if test -z "$_sdlconfig" ; then
fi fi
fi fi
if test "$_sdl" = auto || test "$_sdl" = yes ; then if test "$_sdl" = auto || test "$_sdl" = yes ; then
cat > $TMPC << EOF
#include <SDL.h>
int main(void) { return 0; }
EOF
_sdl=no _sdl=no
if "$_sdlconfig" --version >/dev/null 2>&1 ; then if "$_sdlconfig" --version >/dev/null 2>&1 ; then
if cc_check `$_sdlconfig --cflags` `$_sdlconfig --libs` ; then if cc_check `$_sdlconfig --cflags` `$_sdlconfig --libs` ; then