From 70207b6394400e45d6af9c009214015735c72314 Mon Sep 17 00:00:00 2001 From: reimar Date: Fri, 20 Jul 2007 21:29:44 +0000 Subject: [PATCH] !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 --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 1679633401..673194ec8a 100755 --- a/configure +++ b/configure @@ -4154,7 +4154,7 @@ echocheck "GGI" if test "$_ggi" = auto ; then cat > $TMPC << EOF #include -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 #include -int main(void) { return 0; } +int main(void) { ggiInit(); ggiWmhInit(); return 0; } EOF cc_check -lggi -lggiwmh && _ggiwmh=yes fi