[postgis-devel] [PostGIS] #1724: Extensions not always built when they should be

PostGIS trac at osgeo.org
Tue Mar 27 12:46:38 PDT 2012


#1724: Extensions not always built when they should be
-----------------------------------+----------------------------------------
 Reporter:  mwtoews                |       Owner:  strk         
     Type:  defect                 |      Status:  new          
 Priority:  medium                 |   Milestone:  PostGIS 2.0.0
Component:  build/upgrade/install  |     Version:  trunk        
 Keywords:                         |  
-----------------------------------+----------------------------------------
 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, so
 `xsltproc` is not required

 Here is some suggested pseudo logic to add EXTENSIONS:
   >=91 AND raster AND
     (xsltproc OR
       (`doc/postgis_comments.sql` exists AND `doc/raster_comments.sql`
 exists AND `doc/topology_comments.sql` exists)
     )

-- 
Ticket URL: <http://trac.osgeo.org/postgis/ticket/1724>
PostGIS <http://trac.osgeo.org/postgis/>
The PostGIS Trac is used for bug, enhancement & task tracking, a user and developer wiki, and a view into the subversion code repository of PostGIS project.


More information about the postgis-devel mailing list