aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authordigitall2013-04-17 20:02:09 +0100
committerdigitall2013-04-17 20:02:09 +0100
commit06afc39590016d9ccb8d96690d9529b1a88be710 (patch)
tree6f0d96983caff921fe85ec6ff1d647ea7bb04100 /configure
parent002c6dec0e06168b41c45503a849a400a18dcf52 (diff)
downloadscummvm-rg350-06afc39590016d9ccb8d96690d9529b1a88be710.tar.gz
scummvm-rg350-06afc39590016d9ccb8d96690d9529b1a88be710.tar.bz2
scummvm-rg350-06afc39590016d9ccb8d96690d9529b1a88be710.zip
CONFIGURE: Fix OpenGL test broken in previous commit.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure b/configure
index 90b8f01b8c..70648631e7 100755
--- a/configure
+++ b/configure
@@ -3655,6 +3655,7 @@ if test "$_opengl" = auto ; then
# Test the current header for OpenGL
cat > $TMPC << EOF
#include <$i>
+#include <stdio.h>
int main(void) { printf("ANTIVIRUS FALSE POSITIVE WORKAROUND"); return GL_VERSION_1_1; }
EOF
cc_check $DEFINES $OPENGL_CFLAGS $OPENGL_LIBS && _opengl=yes && break