!00l, last commit mixed up "normal" ggi and ggiwmh tests.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23836 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2007-07-20 21:29:44 +00:00
parent bd58ee07b3
commit 70207b6394
1 changed files with 2 additions and 2 deletions

4
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) { ggiInit(); ggiWmhInit(); return 0; }
int main(void) { ggiInit(); return 0; }
EOF
_ggi=no
cc_check -lggi && _ggi=yes
@ -4176,7 +4176,7 @@ if test "$_ggiwmh" = auto ; then
cat > $TMPC << EOF
#include <ggi/ggi.h>
#include <ggi/wmh.h>
int main(void) { return 0; }
int main(void) { ggiInit(); ggiWmhInit(); return 0; }
EOF
cc_check -lggi -lggiwmh && _ggiwmh=yes
fi