0421ced0fe
* NEW: The ImageViewer example now uses the Paint class. [INTERPRETER] * NEW: Class.Symbols now returns a string array of all class public symbols. * NEW: Component.IsLoaded is a new static method to check if a specific component has been loaded. * NEW: Components.Load has been removed. [GB.GTK] * NEW: Cairo requirements have been added to the configure.ac file. * NEW: The Container.Children.Clear method has been implemented. [GB.GUI] * NEW: Add gb.image requirement in the gb.gui component file. [GB.QT4] * BUG: DrawingArea scrollbars are correctly displayed again. * BUG: DrawingArea internal cache is correctly resized with the control. git-svn-id: svn://localhost/gambas/trunk@2606 867c0c6c-44f3-4631-809d-bfa615b0a4ec
31 lines
479 B
Text
31 lines
479 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" librsvg-2.0 ">= 2.14.3" cairo ">= 1.6.0" cairo-ft ">= 1.6.0"
|
|
)
|
|
|
|
GB_COMPONENT_PKG_CONFIG(
|
|
gtkopengl,
|
|
GTKOPENGL,
|
|
[GTKglext toolkit],
|
|
[opengl],
|
|
gtkglext-1.0
|
|
)
|
|
|
|
AC_OUTPUT( \
|
|
Makefile \
|
|
src/Makefile \
|
|
src/ext/Makefile \
|
|
src/opengl/Makefile
|
|
)
|