Opened 12 years ago

Closed 12 years ago

#1724 closed defect (fixed)

Extensions not always built when they should be

Reported by: Mike Taves 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 cding 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)

)

Change History (2)

comment:1 by strk, 12 years ago

Status: newassigned

comment:2 by strk, 12 years ago

Resolution: fixed
Status: assignedclosed

Done with r9569

Note: See TracTickets for help on using tickets.