3df72165af
* NEW: The syntax of pkg-config detection macro has changed to better use the pkg-config possibilities. [DEVELOPMENT ENVIRONMENT] * BUG: Correctly update .startup file when closing the project property dialog. * BUG: Don't crash when the debugger stops inside the form generated code. * BUG: Update the project templates to the 3.0 syntax. [GB.QTE] * BUG: Make this component compile correctly. * BUG: Remove the automake warning. [GB.QT4] * NEW: Upgrade to the new QT 4 syntax in many places. * NEW: Menu class has been redesigned to use the new QAction class. Not tested yet. * NEW: Standard controls work better. git-svn-id: svn://localhost/gambas/trunk@1344 867c0c6c-44f3-4631-809d-bfa615b0a4ec
28 lines
359 B
Text
28 lines
359 B
Text
dnl ---- configure.ac for gb.gtk.svg
|
|
|
|
AC_INIT(configure.ac)
|
|
GB_INIT(gb.gtk.svg)
|
|
AC_PROG_LIBTOOL
|
|
|
|
GB_CHECK_XWINDOW
|
|
|
|
GB_COMPONENT_PKG_CONFIG(
|
|
gtk,
|
|
GTK,
|
|
[GTK+ component],
|
|
[src],
|
|
gtk+-2.0 ">= 2.8.0"
|
|
)
|
|
|
|
GB_COMPONENT_PKG_CONFIG(
|
|
gtk_svg,
|
|
GTK_SVG,
|
|
[SVG loader for GTK+],
|
|
[src],
|
|
librsvg-2.0 ">= 2.14.3"
|
|
)
|
|
|
|
AC_OUTPUT( \
|
|
Makefile \
|
|
src/Makefile \
|
|
)
|