6128fa8d9f
* NEW: Add the ability to init gb.gtk component through another component. [GB.GTK.OPENGL] * NEW: New component to manage an OpenGL through gb.gtk component This component is pre-alpha, and doesn't work yet, but the structure is in place. git-svn-id: svn://localhost/gambas/trunk@2576 867c0c6c-44f3-4631-809d-bfa615b0a4ec
31 lines
418 B
Text
31 lines
418 B
Text
dnl ---- configure.ac for gb.gtk component
|
|
|
|
AC_INIT(configure.ac)
|
|
AC_CONFIG_MACRO_DIR([m4])
|
|
GB_INIT(gb.gtk)
|
|
AC_PROG_LIBTOOL
|
|
|
|
GB_CHECK_XWINDOW
|
|
|
|
GB_COMPONENT_PKG_CONFIG(
|
|
gtk,
|
|
GTK,
|
|
[GTK+ toolkit],
|
|
[src],
|
|
gtk+-2.0 ">= 2.10"
|
|
)
|
|
|
|
GB_COMPONENT_PKG_CONFIG(
|
|
gtkopengl,
|
|
GTKOPENGL,
|
|
[GTKglext toolkit],
|
|
[opengl],
|
|
gtkglext-1.0
|
|
)
|
|
|
|
AC_OUTPUT( \
|
|
Makefile \
|
|
src/Makefile \
|
|
src/ext/Makefile \
|
|
src/opengl/Makefile
|
|
)
|