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-GNUmakefile | |
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-GNUmakefile')
-rw-r--r-- | databases/postgis/files/patch-GNUmakefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/databases/postgis/files/patch-GNUmakefile b/databases/postgis/files/patch-GNUmakefile new file mode 100644 index 000000000000..e2125b8c00e0 --- /dev/null +++ b/databases/postgis/files/patch-GNUmakefile @@ -0,0 +1,30 @@ +--- GNUmakefile Mon Dec 19 18:23:23 2005 ++++ GNUmakefile Wed Dec 28 15:38:36 2005 +@@ -4,9 +4,15 @@ + # + #----------------------------------------------------- + +-all: Makefile.config liblwgeom loaderdumper utils ++all: Makefile.config liblwgeom loaderdumper utils ++ifneq ($(WITH-DOC),) ++ $(MAKE) -C doc ++endif + +-install: all liblwgeom-install loaderdumper-install ++install: all liblwgeom-install loaderdumper-install utils-install ++ifneq ($(WITH-DOC),) ++ $(MAKE) -C doc install ++endif + + uninstall: liblwgeom-uninstall loaderdumper-uninstall docs-uninstall + +@@ -74,6 +80,9 @@ + + utils: + $(MAKE) -C utils ++ ++utils-install: ++ $(MAKE) -C utils install + + configure: configure.in + ./autogen.sh |