Removed some comments.
Updated configure.ac to stop execution if gdal isn't found.
Makefile
Makefile.in
+ChangeLog
+*.gz
+
.anjuta
.tm_project2.cache
aclocal.m4
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libgtkgis.pc
+
+distclean-local:
+ if test "$(srcdir)" = "."; then :; else \
+ rm -f ChangeLog; \
+ fi
+
+ChangeLog:
+ @echo Creating $@
+ @if test -d "$(srcdir)/.git"; then \
+ (GIT_DIR=$(top_srcdir)/.git ./missing --run git log GTKGIS_0_0_1.. --stat -M -C --name-status --date=short --no-color) | fmt --split-only > $@.tmp \
+ && mv -f $@.tmp $@ \
+ || ($(RM) $@.tmp; \
+ echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
+ (test -f $@ || echo git-log is required to generate this file >> $@)); \
+ else \
+ test -f $@ || \
+ (echo A git checkout and git-log is required to generate ChangeLog >&2 && \
+ echo A git checkout and git-log is required to generate this file >> $@); \
+ fi
+
+.PHONY: ChangeLog
/* Define to the one symbol short name of this package. */
#undef PACKAGE_TARNAME
+/* Define to the home page for this package. */
+#undef PACKAGE_URL
+
/* Define to the version of this package. */
#undef PACKAGE_VERSION
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
-AC_PREREQ(2.63)
+AC_PREREQ(2.61)
AC_INIT([libgtkgis], [0.0.2], [azagli@libero.it])
AC_CONFIG_SRCDIR([src/gtkgis.c])
AC_CONFIG_HEADER([config.h])
AC_PROG_LIBTOOL
GTK_DOC_CHECK
-AC_PATH_PROG(GDAL_CONFIG, "gdal-config", "", $PATH)
+AC_PATH_PROG(GDAL_CONFIG, "gdal-config", no)
+
+if test x"$GDAL_CONFIG" = xno; then
+ AC_MSG_ERROR([gdal-config executable not found in your path - make sure yo have gdal installed])
+fi
# Checks for libraries.
PKG_CHECK_MODULES([GTKGIS], [gtk+-2.0 >= 2.10.0
<FUNCTION>
<NAME>gtk_gis_geometry_raster_new_from_pixbuf</NAME>
<RETURNS>GtkGisGeometry *</RETURNS>
-GdkPixbuf *pixbuf, gdouble x, gdouble y, gdouble pixsize_x, gdouble pixsize_y
+GdkPixbuf *pixbuf,gdouble x,gdouble y,gdouble width,gdouble height
</FUNCTION>
gtk_gis_geometry_polygon_get_type
gtk_gis_geometry_polygon_remove_line
gtk_gis_geometry_raster_get_type
-gtk_gis_geometry_raster_new_from_pixbuf (x, y, x, y, pixsize_x, pixsize_y)
+gtk_gis_geometry_raster_new_from_pixbuf (x, y, width, height, x, y, width, height)
gtk_gis_geometry_set_editable
gtk_gis_get_layer_by_name
gtk_gis_get_legend
@pixbuf:
@x:
@y:
-@pixsize_x:
-@pixsize_y:
+@width:
+@height:
@Returns:
Name: @PACKAGE_NAME@
Description: A Gtk+ widget to embed base GIS functionalities into applications.
Version: @PACKAGE_VERSION@
-Requires: gtk+-2.0 goocanvas libxml-2.0
+Requires: gtk+-2.0 libxml-2.0 goocanvas
Libs: -L${libdir} @GDAL_LIBS@ -lgtkgis
Cflags: @GDAL_CFLAGS@ -I${includedir}/gtkgis
priv->extent->max_y = extent->max_y;
}
}
-g_fprintf(stderr,"geometry extent %f %f %f %f\n",extent->min_x,extent->min_y,extent->max_x,extent->max_y);
-g_fprintf(stderr,"max extent %f %f %f %f\n",priv->extent->min_x,priv->extent->min_y,priv->extent->max_x,priv->extent->max_y);
+/*g_fprintf(stderr,"geometry extent %f %f %f %f\n",extent->min_x,extent->min_y,extent->max_x,extent->max_y);
+g_fprintf(stderr,"max extent %f %f %f %f\n",priv->extent->min_x,priv->extent->min_y,priv->extent->max_x,priv->extent->max_y);*/
goo_canvas_set_bounds (GOO_CANVAS (priv->canvas),
priv->extent->min_x,
priv->extent->min_y,