Mercurial > sdl-ios-xcode
comparison test/configure.in @ 292:eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Incorporated XFree86 extension libraries into the source
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 05 Mar 2002 19:55:32 +0000 |
parents | 0e5d6dd77bda |
children | b8679559e432 |
comparison
equal
deleted
inserted
replaced
291:68a8a8237c09 | 292:eadc0746dfaf |
---|---|
64 | 64 |
65 dnl Check for OpenGL | 65 dnl Check for OpenGL |
66 AC_MSG_CHECKING(for OpenGL support) | 66 AC_MSG_CHECKING(for OpenGL support) |
67 have_opengl=no | 67 have_opengl=no |
68 AC_TRY_COMPILE([ | 68 AC_TRY_COMPILE([ |
69 #if defined(__APPLE__) && defined(__MACH__) | 69 #include "SDL_opengl.h" |
70 #include <OpenGL/gl.h> | |
71 #else | |
72 #include <GL/gl.h> | |
73 #endif | |
74 ],[ | 70 ],[ |
75 ],[ | 71 ],[ |
76 have_opengl=yes | 72 have_opengl=yes |
77 ]) | 73 ]) |
78 AC_MSG_RESULT($have_opengl) | 74 AC_MSG_RESULT($have_opengl) |