Changes between Version 2 and Version 3 of Ticket #4979, comment 5
- Timestamp:
- 08/22/21 03:16:02 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4979, comment 5
v2 v3 158 158 }}} 159 159 160 The problem are the sizes of LWGEOM vs LWPOINT reported at the beginning (both 32) and after (24 vs 32). Therefore, the definitions of liblwgeom.h from 2.5.5 that are still in my system at /usr/local/include from the previous installation from PostGIS 2.5.5160 The problem are the sizes of LWGEOM vs LWPOINT reported at the beginning (both 32) and after (24 vs 32). Therefore, a previous installation of PostGIS 2.5.5 is conflicting with the new one PostGIS 3.1.3 as can be seen in the definitions below to understand the trace above. 161 161 {{{ 162 162 /* POINTYPE */ … … 185 185 LWPOINT; /* "light-weight point" */ 186 186 }}} 187 After removing all traces from PostGIS 2.5.5 in my system it finally works. 188 187 189 Maybe the installation for PostGIS 3.x should remove the old versions 2.5.x installed in the system. 188 190