[postgis-devel] [PostGIS] #1876: lwgeom_calculate_circ_tree symbol missing
PostGIS
trac at osgeo.org
Mon Jun 18 14:38:44 PDT 2012
#1876: lwgeom_calculate_circ_tree symbol missing
---------------------+------------------------------------------------------
Reporter: pramsey | Owner: pramsey
Type: defect | Status: new
Priority: blocker | Milestone: PostGIS 2.1.0
Component: postgis | Version: trunk
Keywords: |
---------------------+------------------------------------------------------
Comment(by pramsey):
The libpgcommon.a was being built without resolution to the liblwgeom
symbols, and when it was stacked onto the final link line for postgis.so
it couldn't find the symbols it needed still. Changing from this:
{{{
SHLIB_LINK_F = ../liblwgeom/.libs/liblwgeom.a ../libpgcommon/libpgcommon.a
@SHLIB_LINK@
}}}
to this
{{{
SHLIB_LINK_F = ../libpgcommon/libpgcommon.a ../liblwgeom/.libs/liblwgeom.a
@SHLIB_LINK@
}}}
in the ./postgis/Makefile.in fixed the problem on my Linux VM.
--
Ticket URL: <http://trac.osgeo.org/postgis/ticket/1876#comment:1>
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