diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2005-12-28 21:10:57 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2005-12-28 21:10:57 +0000 |
commit | 0e4f2cc24d8b7af2d01c4e3b35b615714d0b2e99 (patch) | |
tree | ba2ebc1b5bac698e88a98358d1a596153ebccff4 /databases/postgis/files/patch-loader | |
parent | Add p5-WebService-NoPaste 0.03, a pastebin web application to upload (diff) |
[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>
Notes
Notes:
svn path=/head/; revision=152299
Diffstat (limited to 'databases/postgis/files/patch-loader')
-rw-r--r-- | databases/postgis/files/patch-loader | 31 |
1 files changed, 20 insertions, 11 deletions
diff --git a/databases/postgis/files/patch-loader b/databases/postgis/files/patch-loader index 4578f090a97d..df0665377b5d 100644 --- a/databases/postgis/files/patch-loader +++ b/databases/postgis/files/patch-loader @@ -1,13 +1,22 @@ ---- loader/Makefile Wed Jan 12 15:03:57 2005 -+++ loader/Makefile Mon Jan 31 14:36:59 2005 -@@ -31,8 +32,8 @@ - $(CC) $(CFLAGS) $(OBJS) shp2pgsql.o $(LDFLAGS) -o $@ +--- loader/Makefile Fri Dec 16 14:47:24 2005 ++++ loader/Makefile Wed Dec 28 14:23:13 2005 +@@ -9,7 +9,7 @@ + #--------------------------------------------------------------- - install: all -- $(INSTALL_PROGRAM) pgsql2shp$(EXE) $(DESTDIR)$(bindir)/pgsql2shp$(EXE) -- $(INSTALL_PROGRAM) shp2pgsql$(EXE) $(DESTDIR)$(bindir)/shp2pgsql$(EXE) -+ $(INSTALL_PROGRAM) pgsql2shp$(EXE) $(DESTDIR)$(BINDIR)/pgsql2shp$(EXE) -+ $(INSTALL_PROGRAM) shp2pgsql$(EXE) $(DESTDIR)$(BINDIR)/shp2pgsql$(EXE) + 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 - uninstall: - rm -f $(DESTDIR)$(bindir)/pgsql2shp$(EXE) |