mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 01:21:10 +00:00
(qb) Improve OpenGL and Cg checks
This commit is contained in:
parent
c3ebc1a8fe
commit
e2ea001cb4
@ -237,6 +237,18 @@ else
|
||||
fi
|
||||
|
||||
if [ "$HAVE_OPENGL" != 'no' ] && [ "$HAVE_GLES" != 'yes' ]; then
|
||||
if [ "$OS" = 'Darwin' ]; then
|
||||
check_header OPENGL "OpenGL/gl.h"
|
||||
check_lib OPENGL "-framework OpenGL"
|
||||
elif [ "$OS" = 'Win32' ]; then
|
||||
check_header OPENGL "GL/gl.h"
|
||||
check_lib OPENGL -lopengl32
|
||||
else
|
||||
check_header OPENGL "GL/gl.h"
|
||||
check_lib OPENGL -lGL
|
||||
fi
|
||||
|
||||
if [ "$HAVE_OPENGL" = 'yes' ]; then
|
||||
if [ "$OS" = 'Darwin' ]; then
|
||||
check_lib CG "-framework Cg" cgCreateContext
|
||||
[ "$HAVE_CG" = 'yes' ] && CG_LIBS='-framework Cg'
|
||||
@ -246,8 +258,6 @@ if [ "$HAVE_OPENGL" != 'no' ] && [ "$HAVE_GLES" != 'yes' ]; then
|
||||
else
|
||||
# On some distros, -lCg doesn't link against -lstdc++ it seems ...
|
||||
check_lib_cxx CG -lCg cgCreateContext
|
||||
check_lib OPENGL -lGL
|
||||
check_header OPENGL "GL/gl.h"
|
||||
[ "$HAVE_CG" = 'yes' ] && CG_LIBS='-lCg -lCgGL'
|
||||
fi
|
||||
|
||||
@ -257,6 +267,7 @@ else
|
||||
echo "Notice: Ignoring Cg. Desktop OpenGL is not enabled."
|
||||
HAVE_CG='no'
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ "$OS" = 'Darwin' ]; then
|
||||
check_lib ZLIB "-lz"
|
||||
|
Loading…
x
Reference in New Issue
Block a user