mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 05:10:29 -04:00
Changelog: * New Curve type, based on the ISO SQL/MM model for curves. * Index binding for curves, allowing them to use the same R-Tree indexes as the other types. * Serialization and deserialization functions for Curve, allowing them to be dumped and restored. * Performance shortcuts for Contains and Within to optimize point-in-polygon case. * Support for most of the ST_* and SE_* spatial SQL functions used by the ESRI ArcSDE spatial SQL interfaces. * Documentation of the new SQL/MM functions and Curve types. PR: ports/107489 Submitted by: Anderson S. Ferreira <anderson@cnpm.embrapa.br> (maintainer)
11 lines
1.2 KiB
Text
11 lines
1.2 KiB
Text
--- lwgeom/Makefile Tue Dec 5 17:07:00 2006
|
|
+++ lwgeom/Makefile Wed Jan 3 14:45:49 2007
|
|
@@ -129,7 +129,7 @@
|
|
$(PERL) ../utils/postgis_proc_upgrade.pl ../lwpostgis.sql > ../lwpostgis_upgrade.sql
|
|
|
|
../lwpostgis.sql: lwpostgis.sql.in long_xact.sql.in sqlmm.sql.in sqldefines.h
|
|
- cpp -P -traditional-cpp -DUSE_VERSION=$(USE_VERSION) $< | sed -e 's:@MODULE_FILENAME@:$(MODULE_FILENAME):g;s:@POSTGIS_VERSION@:$(POSTGIS_VERSION):g;s:@POSTGIS_SCRIPTS_VERSION@:$(SCRIPTS_VERSION):g;s/@POSTGIS_BUILD_DATE@/$(POSTGIS_BUILD_DATE)/g' | grep -v '^#' > $@
|
|
+ cpp -P -traditional-cpp -DUSE_VERSION=$(USE_VERSION) $< | sed -e 's:@MODULE_FILENAME@:$$libdir/liblwgeom.so.1:g;s:@POSTGIS_VERSION@:$(POSTGIS_VERSION):g;s:@POSTGIS_SCRIPTS_VERSION@:$(SCRIPTS_VERSION):g;s/@POSTGIS_BUILD_DATE@/$(POSTGIS_BUILD_DATE)/g' | grep -v '^#' > $@
|
|
|
|
../regress/lwpostgis.sql: lwpostgis.sql.in long_xact.sql.in sqlmm.sql.in sqldefines.h
|
|
cpp -P -traditional-cpp -DUSE_VERSION=$(USE_VERSION) $< | sed -e 's#@MODULE_FILENAME@#$(REGRESS_MODULE_FILENAME)#g;s#@POSTGIS_VERSION@#$(POSTGIS_VERSION)#g;s#@POSTGIS_SCRIPTS_VERSION@#$(SCRIPTS_VERSION)#g;s/@POSTGIS_BUILD_DATE@/$(POSTGIS_BUILD_DATE)/g' | grep -v '^#' > $@
|