OSS-Fuzz: stub new GEOS call to fix build

stable-3.2
Darafei Praliaskouski 2021-01-10 14:18:18 +03:00
parent c514256e6c
commit a1e81a42a9
1 changed files with 35 additions and 4 deletions

View File

@ -386,13 +386,45 @@ GEOSNode()
{
assert(0);
}
#if POSTGIS_GEOS_VERSION > 38
void
GEOSGeom_createEmptyPoint()
{
assert(0);
}
void
GEOSCoordSeq_setXY()
{
assert(0);
}
void
GEOSCoordSeq_getXY()
{
assert(0);
}
void
GEOSCoordSeq_setXYZ()
{
assert(0);
}
void
GEOSCoordSeq_getXYZ()
{
assert(0);
}
void GEOSGeom_getXY()
{
assert(0);
}
void
GEOSBuildArea()
{
assert(0);
}
void
GEOSMakeValid()
{
assert(0);
}
void GEOSGeom_getXYZ()
{
assert(0);
@ -412,4 +444,3 @@ void GEOSGeom_createPointFromXY()
{
assert(0);
}
#endif