summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-20 21:29:44 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-20 21:29:44 +0000
commit70207b6394400e45d6af9c009214015735c72314 (patch)
tree1f04f5777fa0fc16852a7ecb1e59189454666faa /configure
parentbd58ee07b3593b53a83d3dfb96eefcd439a6e083 (diff)
downloadmpv-70207b6394400e45d6af9c009214015735c72314.tar.bz2
mpv-70207b6394400e45d6af9c009214015735c72314.tar.xz
!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
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files 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 <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