409f3ed4d7
* BUG: Don't crash if there is a compilation error in a form file. * BUG: Autotools packager "make uninstall" should be definitely fixed. [GB.GTK] * NEW: A new interface to allow gb.gtk.opengl to create its GLArea widget. [GB.GTK.OPENGL] * NEW: New component that allows to do OpenGL with GTK+. It is based on there gtkglext library. [GB.OPENGL] * BUG: Initialize GLEW once. [GB.QT4.OPENGL] * NEW: Remove the Update() and the Select() methods. [GB.XML.HTML] * BUG: Don't link against gb.xml anymore as it seems to break on some systems. Wait for a better solution... git-svn-id: svn://localhost/gambas/trunk@4717 867c0c6c-44f3-4631-809d-bfa615b0a4ec
32 lines
511 B
Text
32 lines
511 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.16" librsvg-2.0 ">= 2.14.3" cairo ">= 1.6.0" cairo-ft ">= 1.6.0" gtk+-unix-print-2.0 ">= 2.10"
|
|
)
|
|
|
|
GB_COMPONENT_PKG_CONFIG(
|
|
gtkopengl,
|
|
GTKOPENGL,
|
|
[GTKglext toolkit],
|
|
[opengl],
|
|
gtkglext-1.0
|
|
)
|
|
|
|
AC_OUTPUT( \
|
|
Makefile \
|
|
src/Makefile \
|
|
src/opengl/Makefile \
|
|
)
|
|
|
|
GB_PRINT_MESSAGES
|