gambas-source-code/gb.gtk/configure.ac
Benoît Minisini f57d3273fe [CONFIGURATION]
* NEW: Support for Haiku operating system.
* BUG: Add explicit dependencies on 'x11' and 'gl' pkg-config packages.

[GB.FORM]
* NEW: MaskBox: Use unicode large spaces instead of ASCII smal spaces.

[GB.UTIL.WEB]
* BUG: Fix collection generation in JSON.Encode().

[GB.WEB.FORM]
* NEW: WebImage: Add the Border property.
* NEW: WebImage: Image property now can be an absolute path.
* BUG: WebButton: Workaround Firefox not supporting flex on buttons.
* BUG: WebComboBox: Enabled property is now taken into account.
* BUG: WebUploadArea: The file name now keeps the uploaded file extension.


git-svn-id: svn://localhost/gambas/trunk@7786 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2016-05-24 16:18:48 +00:00

28 lines
568 B
Text

dnl ---- configure.ac for gb.gtk component
m4_include([../version.m4])
AC_INIT(gambas3-gb-gtk, GB_VERSION, GB_MAIL, [], GB_URL)
AC_CONFIG_MACRO_DIR([m4])
GB_INIT(gb.gtk)
AC_PROG_LIBTOOL
GB_CHECK_XWINDOW()
GB_COMPONENT_PKG_CONFIG(
gtk, GTK, gb.gtk, [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' sm ice x11
)
GB_COMPONENT_PKG_CONFIG(
gtkopengl, GTKOPENGL, gb.gtk.opengl, [opengl],
gtkglext-1.0 gl x11
)
AC_OUTPUT( \
Makefile \
src/Makefile \
src/opengl/Makefile \
)
GB_PRINT_MESSAGES