gambas-source-code/gb.gtk/configure.ac
Benoît Minisini a0cf1a5b01 [DEVELOPMENT ENVIRONMENT]
* BUG: Paste and Delete are now correctly disabled in the form editor when 
  the form is read-only.

[EXAMPLE]
* NEW: New Printing example.

[GB.DRAW]
* NEW: Paint.RichTextExtents() now take an optional width argument.
* NEW: Paint.DrawText() and Paint.DrawRichText() are two new methods to 
  directly draw text without using an intermediate path. They make 
  generated PDF and Postscript files smaller.

[GB.FORM]
* BUG: Setting ScrollArea.Border property correctly refreshes it now.
* BUG: ScrollArea contents is correctly clipped now.

[GB.GTK]
* BUG: gb.gtk now requires 'gtk+-unix-print-2.0' pkg-config library.
* BUG: Dialog.Font works correctly now.
* BUG: Relative font sizes are correctly interpreted in rich text now.
* BUG: TextArea shortcuts correctly ensure that the cursor is visible.
* BUG: Paint.DrawImage() works correctly now.


git-svn-id: svn://localhost/gambas/trunk@3607 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2011-02-23 15:49:56 +00:00

32 lines
509 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" 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