diff options
author | Johannes Schickel | 2010-12-01 20:50:12 +0000 |
---|---|---|
committer | Johannes Schickel | 2010-12-01 20:50:12 +0000 |
commit | 4fe7e1b3e9ff866d51ec2b86880acbbedc86d6ec (patch) | |
tree | d3c438f843b32761c98d97266fb377c261e7dd97 /configure | |
parent | 75cf4a225d741be442097f23e361459e08e45fc2 (diff) | |
download | scummvm-rg350-4fe7e1b3e9ff866d51ec2b86880acbbedc86d6ec.tar.gz scummvm-rg350-4fe7e1b3e9ff866d51ec2b86880acbbedc86d6ec.tar.bz2 scummvm-rg350-4fe7e1b3e9ff866d51ec2b86880acbbedc86d6ec.zip |
CONFIGURE: Fix OpenGL library detection on OS X in case MESA is installed.
svn-id: r54722
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -2666,10 +2666,14 @@ EOF _opengl=no # Try different library names - # 1) GL This is usually used on POSIX systems - # 2) opengl32 This is used on Windows - # 3) -framework OpenGL This is used on Mac OS X - for lib in "-lGL" "-lopengl32" "-framework OpenGL"; do + # 1) -framework OpenGL This is used on Mac OS X + # 2) GL This is usually used on POSIX systems + # 3) opengl32 This is used on Windows + # + # We try "-framework OpenGL" first here to assure it will always be + # picked up by the configure script on Mac OS X, even when a libGL + # exists. + for lib in "-framework OpenGL" "-lGL" "-lopengl32"; do if cc_check_no_clean $DEFINES $OPENGL_CFLAGS $OPENGL_LIBS $lib then _opengl=yes |