PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ lwgeom_geos_compiled_version()

const char* lwgeom_geos_compiled_version ( void  )

Definition at line 43 of file liblwgeom/lwgeom_geos.c.

44 {
45  static char ver[64];
46  sprintf(
47  ver,
48  "%d.%d.%d",
49  (POSTGIS_GEOS_VERSION/10000),
50  ((POSTGIS_GEOS_VERSION%10000)/100),
51  ((POSTGIS_GEOS_VERSION)%100)
52  );
53  return ver;
54 }
#define POSTGIS_GEOS_VERSION
Definition: sqldefines.h:11

References POSTGIS_GEOS_VERSION.

Referenced by lwgeom_geos_error_minversion(), and postgis_geos_compiled_version().

Here is the caller graph for this function: