Opened 13 years ago
Closed 13 years ago
#1724 closed defect (fixed)
Extensions not always built when they should be
Reported by: | mwtoews | Owned by: | strk |
---|---|---|---|
Priority: | medium | Milestone: | PostGIS 2.0.0 |
Component: | build | Version: | master |
Keywords: | Cc: |
Description
On test builds of beta4 on Ubuntu 11.10 with different packages and configure options, the extensions are not always automatically built. However, these can be manually built, by cd
ing into extensions
and make
, sudo make install
.
configure.ac
requires all of these to automatically include EXTENSIONS (in pseudo logic):
=91 AND xsltproc AND raster AND topology.
http://trac.osgeo.org/postgis/browser/trunk/configure.ac#L1053
However there are certain exceptions that EXTENSIONS should be included, listed here:
- topology is not required to build the postgis extension, so should be ignored; only raster is required
- tagged releases include the three
doc/*_commets.sql
files, soxsltproc
is not required
Here is some suggested pseudo logic to add EXTENSIONS:
=91 AND raster AND
(xsltproc OR
(
doc/postgis_comments.sql
exists ANDdoc/raster_comments.sql
exists ANDdoc/topology_comments.sql
exists))
Change History (2)
comment:1 by , 13 years ago
Status: | new → assigned |
---|
comment:2 by , 13 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Done with r9569