Change ggi and SDL tests so that linking problems with --enable-static are more

likely to be detected.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23835 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2007-07-20 21:27:17 +00:00
parent 8b51dfe0e2
commit bd58ee07b3
1 changed files with 5 additions and 2 deletions

7
configure vendored
View File

@ -4154,7 +4154,7 @@ echocheck "GGI"
if test "$_ggi" = auto ; then
cat > $TMPC << EOF
#include <ggi/ggi.h>
int main(void) { return 0; }
int main(void) { ggiInit(); ggiWmhInit(); return 0; }
EOF
_ggi=no
cc_check -lggi && _ggi=yes
@ -4606,7 +4606,10 @@ fi
if test "$_sdl" = auto || test "$_sdl" = yes ; then
cat > $TMPC << EOF
#include <SDL.h>
int main(int argc, char *argv[]) { return 0; }
int main(int argc, char *argv[]) {
SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
return 0;
}
EOF
_sdl=no
if "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then