gambas-source-code/gb.gtk/configure.ac
Benoît Minisini 330a46fbed [EXAMPLES]
* NEW: Add a SVG drawing to the Painting example.

[GB.GTK]
* NEW: Use librsvg to implement SVG file loading and rendering.
* NEW: SvgImage.Load is a new method to load a SVG file from disk.
* NEW: SvgImage.Paint is a new method for painting the SvgImage to the 
  current painted device.
* BUG: Paint.TextExtents works correctly by taken into account negative 
  top and left extents.


git-svn-id: svn://localhost/gambas/trunk@2587 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2010-01-01 23:20:25 +00:00

31 lines
442 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"
)
GB_COMPONENT_PKG_CONFIG(
gtkopengl,
GTKOPENGL,
[GTKglext toolkit],
[opengl],
gtkglext-1.0
)
AC_OUTPUT( \
Makefile \
src/Makefile \
src/ext/Makefile \
src/opengl/Makefile
)