mirror of
https://git.freebsd.org/ports.git
synced 2025-05-31 02:16:27 -04:00
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>
22 lines
577 B
Text
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
|
|
|