Opened 12 years ago
Closed 12 years ago
#1876 closed defect (fixed)
lwgeom_calculate_circ_tree symbol missing
Reported by: | pramsey | Owned by: | pramsey |
---|---|---|---|
Priority: | blocker | Milestone: | PostGIS 2.1.0 |
Component: | postgis | Version: | master |
Keywords: | Cc: |
Description
When loading up postgis-2.1.so, the linker complains that lwgeom_calculate_circ_tree is missing. Specific to Linux it seems. Currently means regression cannot run.
Change History (3)
comment:1 by , 12 years ago
comment:3 by , 12 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
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:
to this
in the ./postgis/Makefile.in fixed the problem on my Linux VM.