ports/databases/postgis/files/patch-loader
Edwin Groothuis 0e4f2cc24d [maintainer-update] Postgis upgrade from 1.0.6 to 1.1.0
Postgis upgrade from 1.0.6 to 1.1.0 .

	This release, includes new functionality, performance
	improvements and bug fixes.  Highlights include:

	    * Geometry building functions, including line merging, polygon creation and vertex manipulation,
	    * Linear referencing functions, including support for measures,
	    * Performance improvements to coordinate reference transformations

PR:		ports/91030
Submitted by:	Anderson S. Ferreira <anderson@cnpm.embrapa.br>
2005-12-28 21:10:57 +00:00

22 lines
577 B
Text

--- loader/Makefile Fri Dec 16 14:47:24 2005
+++ loader/Makefile Wed Dec 28 14:23:13 2005
@@ -9,7 +9,7 @@
#---------------------------------------------------------------
ifeq ($(USE_ICONV),1)
- override CFLAGS += -DUSE_ICONV
+ override CFLAGS += -DUSE_ICONV -I/usr/local/include
override LDFLAGS += $(ICONV_LDFLAGS)
endif
--- loader/shp2pgsql.c Tue Nov 1 07:25:47 2005
+++ loader/shp2pgsql.c Wed Dec 28 14:23:13 2005
@@ -33,7 +33,7 @@
#include <unistd.h>
#include <errno.h>
#include "getopt.h"
-#ifdef HAVE_ICONV_H
+#ifdef USE_ICONV
#include <iconv.h>
#endif