gambas-source-code/gb.opengl/configure.ac
Benoît Minisini 0d2256a19d [DEVELOPMENT ENVIRONMEMNT]
* BUG: ImageEditor: Fix a crash that occurs after something having pasted.

[EXAMPLES]
* NEW: Md2Model example has been redesigned. It now displays a lot of 
  models between six different ones.

[INTERPRETER]
* BUG: Fix a crash when an error is raised while the startup class is not 
  ready.

[GB.GEOM]
* BUG: Fix the conversion from Point/PointF to Float that internally uses
  the Abs() function.

[GB.GTK]
* NEW: Visible trayicons prevent the eventloop from stopping.

[GB.OPENGL.SGE]
* NEW: The component sources are now located inside the gb.opengl 
  directory.
* NEW: The component interface has been redesigned.

[GB.QT4]
* NEW: Visible trayicons prevent the eventloop from stopping.

[GB.QT4.OPENGL]
* BUG: The OpenGL clear color is now taken into account when clearing the 
  area before calling the Draw event handler.


git-svn-id: svn://localhost/gambas/trunk@5836 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2013-09-08 17:15:55 +00:00

32 lines
530 B
Text

dnl ---- configure.ac for gb.opengl
AC_INIT(configure.ac)
AC_CONFIG_MACRO_DIR([m4])
GB_INIT(gb.opengl)
AC_PROG_LIBTOOL
GB_COMPONENT_PKG_CONFIG(
opengl, OPENGL, gb.opengl, [src],
[gl glew])
GB_COMPONENT_PKG_CONFIG(
glsl, GLSL, gb.opengl.glsl, [glsl],
[gl glew])
GB_COMPONENT_PKG_CONFIG(
glu, GLU, gb.opengl.glu, [glu],
[glu])
GB_COMPONENT_PKG_CONFIG(
sge, SGE, gb.opengl.sge, [sge],
[gl glew])
AC_OUTPUT( \
Makefile \
src/Makefile \
src/glu/Makefile \
src/glsl/Makefile \
src/sge/Makefile
)
GB_PRINT_MESSAGES