mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
gl: add the option of disabling cocoa on OS X using --disable-cocoa
This commit is contained in:
parent
acf1616251
commit
ceb02341df
1 changed files with 8 additions and 5 deletions
13
configure.ac
13
configure.ac
|
@ -971,11 +971,13 @@ case $host in
|
|||
AC_MSG_ERROR([OpenGL|ES 2.0 is not supported on your platform yet])
|
||||
fi
|
||||
|
||||
GL_LIBS="$LIBS -framework OpenGL -framework Cocoa"
|
||||
GL_CFLAGS="$GL_CFLAGS"
|
||||
USE_COCOA=yes
|
||||
HAVE_WINDOW_COCOA=yes
|
||||
USE_OPENGL=yes
|
||||
if test "x$NEED_COCOA" != "xno"; then
|
||||
GL_LIBS="$LIBS -framework OpenGL -framework Cocoa"
|
||||
GL_CFLAGS="$GL_CFLAGS"
|
||||
USE_COCOA=yes
|
||||
HAVE_WINDOW_COCOA=yes
|
||||
USE_OPENGL=yes
|
||||
fi
|
||||
|
||||
if test "x$USE_GLX" = "xyes"; then
|
||||
if test "x$HAVE_X" = "xyes"; then
|
||||
|
@ -993,6 +995,7 @@ case $host in
|
|||
if test "x$HAVE_GLU" = "xyes"; then
|
||||
GL_LIBS="$GL_LIBS -lGLU"
|
||||
fi
|
||||
USE_OPENGL=yes
|
||||
fi
|
||||
fi
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue