b458334f0b
* NEW: Transformation and matrix functions were implemented. [GB.IMAGE] * NEW: The format conversion function comes back in the gb.image API. [GB.IMAGE.IO] * NEW: New component for loading and saving images. git-svn-id: svn://localhost/gambas/trunk@1820 867c0c6c-44f3-4631-809d-bfa615b0a4ec
15 lines
256 B
Text
15 lines
256 B
Text
dnl ---- configure.ac for gb.image.io
|
|
|
|
AC_INIT(configure.ac)
|
|
GB_INIT(gb.image.io)
|
|
AC_PROG_LIBTOOL
|
|
|
|
GB_COMPONENT_PKG_CONFIG(
|
|
image_io,
|
|
IMAGE_IO,
|
|
[Image loading and saving],
|
|
[src],
|
|
gdk-pixbuf-2.0 ">= 2.4.13"
|
|
)
|
|
|
|
AC_OUTPUT( Makefile src/Makefile )
|