Commit 61acca87 authored by Benjamin Pracht's avatar Benjamin Pracht

* Patch by Cédric Cocquebert to add several additional video effects to the opengl vout

parent 1ba03e33
...@@ -32,6 +32,7 @@ Brieuc Jeunhomme <bbp at via.ecp.fr> - bug fixes ...@@ -32,6 +32,7 @@ Brieuc Jeunhomme <bbp at via.ecp.fr> - bug fixes
Bruno Vella <allevb at tin.it> - Italian localization Bruno Vella <allevb at tin.it> - Italian localization
Carlo Calabrò <murray at via.ecp.fr> - Italian localization Carlo Calabrò <murray at via.ecp.fr> - Italian localization
Carsten Gottbehüt <gottbehuet at active-elements dot de> - v4l hotplug fix Carsten Gottbehüt <gottbehuet at active-elements dot de> - v4l hotplug fix
Cédric Cocquebert - Misc opengl effects for the OpenGL Video Output
Chris Clepper - OpenGL fix Chris Clepper - OpenGL fix
Christian Henz - libupnp service discovery plugin, CyberLink UPnP fixes Christian Henz - libupnp service discovery plugin, CyberLink UPnP fixes
Christof Baumgaertner - dbox web intf Christof Baumgaertner - dbox web intf
......
...@@ -3572,12 +3572,12 @@ AC_ARG_ENABLE(opengl, ...@@ -3572,12 +3572,12 @@ AC_ARG_ENABLE(opengl,
if test "${enable_opengl}" != "no" && if test "${enable_opengl}" != "no" &&
test "${SYS}" != "beos" -a "${SYS}" != "mingwce"; then test "${SYS}" != "beos" -a "${SYS}" != "mingwce"; then
if test "${SYS}" != "darwin"; then if test "${SYS}" != "darwin"; then
AC_CHECK_HEADERS(GL/gl.h, [ AC_CHECK_HEADERS(GL/gl.h GL/glu.h, [
VLC_ADD_PLUGINS([opengl]) VLC_ADD_PLUGINS([opengl])
if test "${SYS}" != "mingw32"; then if test "${SYS}" != "mingw32"; then
VLC_ADD_LDFLAGS([opengl],[${X_LIBS} -lGL -lGLU]) VLC_ADD_LDFLAGS([opengl],[${X_LIBS} -lGL -lGLU])
else else
VLC_ADD_LDFLAGS([opengl],[-lopengl32]) VLC_ADD_LDFLAGS([opengl],[-lopengl32 -lglu32])
fi fi
]) ])
else else
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment