Skip to content
Commits on Source (16)
This diff is collapsed.
......@@ -181,7 +181,7 @@ CSCOPE = cscope
DIST_SUBDIRS = $(SUBDIRS)
am__DIST_COMMON = $(srcdir)/Makefile.in AUTHORS COPYING INSTALL NEWS \
TODO compile config.guess config.sub install-sh ltmain.sh \
missing
missing py-compile
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
......@@ -386,7 +386,6 @@ program_transform_name = @program_transform_name@
psdir = @psdir@
pyexecdir = @pyexecdir@
pythondir = @pythondir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
......
Changes in 3.7.0rc2
2018-09-03
Fixes / enhancements since 3.7.0rc1
- Drop ? from extended regular expression,
so that the expression strictly conforms to the POSIX ERE rules.
(#917, Greg Troxel, Bas Couwenberg)
- include .editorconfig in tar ball,
fixes Cmake on VS (#920, Jeff Mckenna, Regina Obe)
- Ignore error in CoordinateArraySequenceFactoryTest
failing on FreeBSD/macOS Clang (#894)
Changes in 3.7.0rc1
2018-08-19
Fixes / enhancements since 3.7.0beta2
- Avoid segfault when querying empty tree (#730, framm)
- Collection with Empty components crashes overlay (#782, Dan Baston)
- Allow static library with C API for CMake builds (#878, Dakota Hawkins)
Changes in 3.7.1
2018-11-29
Changes in 3.7.0beta2
2018-08-06
Fixes since 3.7.0beta1
- Fix infinite loop in GEOSClipByRect (#865, Dan Baston)
- Make GEOSException inherit from std::runtime_error
to address clang warnings (Dan Baston)
- Add missing CMake files to tarball (#895, Regina Obe)
- Bug fixes / improvements
- Fix crash in GEOSCoordSeq_isCCW with empty coordseq
(#927, Sergey Fedoseev)
- Fix crash in GEOSInterpolate with empty LineString
(#926, Sergey Fedoseev)
- Fix crash in GEOSUnaryUnion with empty LineString
(#928, Sergey Fedoseev)
- Fix memory leak in SIRtree::insert (#919, Dan Baston)
- Reduce required autoconf to 2.63
(#56, John Harvey)
- Fix incorrect return values on error from GEOSLength
GEOSisValidDetail (#941, Dan Baston)
Changes in 3.7.0
2018-09-10
3.7.0 changes
- New things:
- CAPI: GEOSDistanceIndexed (#795, Dan Baston)
- CAPI: GEOSCoordSeq_isCCW (#870, Dan Baston)
......@@ -39,6 +31,8 @@ Fixes since 3.7.0beta1
- Interruptible snap operation (Paul Ramsey)
- Numerous packaging, doc, and build changes
(Debian group: Bas Couwenberg, Francesco Paolo Lovergine)
(NetBSD: Greg Troxel)
- Allow static library with C API for CMake builds (#878, Dakota Hawkins)
- C++ API changes:
- Require defining USE_UNSTABLE_GEOS_CPP_API for use without
......@@ -51,6 +45,34 @@ Fixes since 3.7.0beta1
- Fix CommonBits::getBit to correctly handle i >= 32
(#834, Kurt Schwehr)
Changes in 3.7.0rc2
2018-09-03
Fixes / enhancements since 3.7.0rc1
- Drop ? from extended regular expression,
so that the expression strictly conforms to the POSIX ERE rules.
(#917, Greg Troxel, Bas Couwenberg)
- include .editorconfig in tar ball,
fixes Cmake on VS (#920, Jeff Mckenna, Regina Obe)
- Ignore error in CoordinateArraySequenceFactoryTest
failing on FreeBSD/macOS Clang (#894)
Changes in 3.7.0rc1
2018-08-19
Fixes / enhancements since 3.7.0beta2
- Avoid segfault when querying empty tree (#730, framm)
- Collection with Empty components crashes overlay (#782, Dan Baston)
- Allow static library with C API for CMake builds (#878, Dakota Hawkins)
Changes in 3.7.0beta2
2018-08-06
Fixes since 3.7.0beta1
- Fix infinite loop in GEOSClipByRect (#865, Dan Baston)
- Make GEOSException inherit from std::runtime_error
to address clang warnings (Dan Baston)
- Add missing CMake files to tarball (#895, Regina Obe)
Changes in 3.7.0beta1
2018-06-25
See 3.7.0 latest notes
......
......@@ -14,24 +14,29 @@ More on: https://trac.osgeo.org/geos#BuildandInstall
## Building, testing, installing
### Prerequisites
Building GEOS requires a C++11 compiler
### Unix
Using Autotools:
#### Using Autotools:
./autogen.sh # in ${srcdir}, if obtained from SVN or GIT
${srcdir}/configure # in build dir
(mkdir obj && cd obj && ../configure)
Using CMake:
#### Using CMake:
cmake ${srcdir} # in build dir
(mkdir build && cd build && cmake ..)
Now, all versions:
#### Either Autotools or CMake
make
make check
make install # as root
ldconfig # as root
make install # (as root, assuming PREFIX is not writable by the build user)
On a GNU/Linux system, if installed in a system prefix:
ldconfig # as root
### Microsoft Windows
......
......@@ -384,7 +384,6 @@ program_transform_name = @program_transform_name@
psdir = @psdir@
pyexecdir = @pyexecdir@
pythondir = @pythondir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
......
......@@ -70,10 +70,10 @@ extern "C" {
#define GEOS_VERSION_MINOR 7
#endif
#ifndef GEOS_VERSION_PATCH
#define GEOS_VERSION_PATCH 0rc2
#define GEOS_VERSION_PATCH 1
#endif
#ifndef GEOS_VERSION
#define GEOS_VERSION "3.7.0rc2"
#define GEOS_VERSION "3.7.1"
#endif
#ifndef GEOS_JTS_PORT
#define GEOS_JTS_PORT "1.13.0"
......@@ -81,8 +81,8 @@ extern "C" {
#define GEOS_CAPI_VERSION_MAJOR 1
#define GEOS_CAPI_VERSION_MINOR 11
#define GEOS_CAPI_VERSION_PATCH 0
#define GEOS_CAPI_VERSION "3.7.0rc2-CAPI-1.11.0"
#define GEOS_CAPI_VERSION_PATCH 1
#define GEOS_CAPI_VERSION "3.7.1-CAPI-1.11.1"
#endif
#define GEOS_CAPI_FIRST_INTERFACE GEOS_CAPI_VERSION_MAJOR
......@@ -1066,7 +1066,7 @@ extern int GEOS_DLL GEOSGetNumInteriorRings_r(GEOSContextHandle_t handle,
extern int GEOS_DLL GEOSGeomGetNumPoints_r(GEOSContextHandle_t handle,
const GEOSGeometry* g);
/* Return -1 on exception, Geometry must be a Point. */
/* Return 0 on exception, otherwise 1, Geometry must be a Point. */
extern int GEOS_DLL GEOSGeomGetX_r(GEOSContextHandle_t handle, const GEOSGeometry *g, double *x);
extern int GEOS_DLL GEOSGeomGetY_r(GEOSContextHandle_t handle, const GEOSGeometry *g, double *y);
extern int GEOS_DLL GEOSGeomGetZ_r(GEOSContextHandle_t handle, const GEOSGeometry *g, double *z);
......@@ -1991,7 +1991,7 @@ extern int GEOS_DLL GEOSGetNumInteriorRings(const GEOSGeometry* g);
/* Return -1 on exception, Geometry must be a LineString. */
extern int GEOS_DLL GEOSGeomGetNumPoints(const GEOSGeometry* g);
/* Return -1 on exception, Geometry must be a Point. */
/* Return 0 on exception, otherwise 1, Geometry must be a Point. */
extern int GEOS_DLL GEOSGeomGetX(const GEOSGeometry *g, double *x);
extern int GEOS_DLL GEOSGeomGetY(const GEOSGeometry *g, double *y);
extern int GEOS_DLL GEOSGeomGetZ(const GEOSGeometry *g, double *z);
......
......@@ -1066,7 +1066,7 @@ extern int GEOS_DLL GEOSGetNumInteriorRings_r(GEOSContextHandle_t handle,
extern int GEOS_DLL GEOSGeomGetNumPoints_r(GEOSContextHandle_t handle,
const GEOSGeometry* g);
/* Return -1 on exception, Geometry must be a Point. */
/* Return 0 on exception, otherwise 1, Geometry must be a Point. */
extern int GEOS_DLL GEOSGeomGetX_r(GEOSContextHandle_t handle, const GEOSGeometry *g, double *x);
extern int GEOS_DLL GEOSGeomGetY_r(GEOSContextHandle_t handle, const GEOSGeometry *g, double *y);
extern int GEOS_DLL GEOSGeomGetZ_r(GEOSContextHandle_t handle, const GEOSGeometry *g, double *z);
......@@ -1991,7 +1991,7 @@ extern int GEOS_DLL GEOSGetNumInteriorRings(const GEOSGeometry* g);
/* Return -1 on exception, Geometry must be a LineString. */
extern int GEOS_DLL GEOSGeomGetNumPoints(const GEOSGeometry* g);
/* Return -1 on exception, Geometry must be a Point. */
/* Return 0 on exception, otherwise 1, Geometry must be a Point. */
extern int GEOS_DLL GEOSGeomGetX(const GEOSGeometry *g, double *x);
extern int GEOS_DLL GEOSGeomGetY(const GEOSGeometry *g, double *y);
extern int GEOS_DLL GEOSGeomGetZ(const GEOSGeometry *g, double *z);
......
......@@ -419,7 +419,7 @@ GEOSFree_r (GEOSContextHandle_t extHandle, void* buffer)
//-----------------------------------------------------------
// relate()-related functions
// return 0 = false, 1 = true, 2 = error occured
// return 0 = false, 1 = true, 2 = error occurred
//-----------------------------------------------------------
char
......@@ -1016,14 +1016,14 @@ GEOSisValidDetail_r(GEOSContextHandle_t extHandle, const Geometry *g,
{
if ( 0 == extHandle )
{
return 0;
return 2;
}
GEOSContextHandleInternal_t *handle = 0;
handle = reinterpret_cast<GEOSContextHandleInternal_t*>(extHandle);
if ( 0 == handle->initialized )
{
return 0;
return 2;
}
try
......@@ -1378,7 +1378,7 @@ GEOSLength_r(GEOSContextHandle_t extHandle, const Geometry *g, double *length)
if ( 0 == extHandle )
{
return 2;
return 0;
}
GEOSContextHandleInternal_t *handle = 0;
......
This diff is collapsed.
This diff is collapsed.
......@@ -795,7 +795,6 @@ infodir
docdir
oldincludedir
includedir
runstatedir
localstatedir
sharedstatedir
sysconfdir
......@@ -889,7 +888,6 @@ datadir='${datarootdir}'
sysconfdir='${prefix}/etc'
sharedstatedir='${prefix}/com'
localstatedir='${prefix}/var'
runstatedir='${localstatedir}/run'
includedir='${prefix}/include'
oldincludedir='/usr/include'
docdir='${datarootdir}/doc/${PACKAGE}'
......@@ -1142,15 +1140,6 @@ do
| -silent | --silent | --silen | --sile | --sil)
silent=yes ;;
 
-runstatedir | --runstatedir | --runstatedi | --runstated \
| --runstate | --runstat | --runsta | --runst | --runs \
| --run | --ru | --r)
ac_prev=runstatedir ;;
-runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \
| --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \
| --run=* | --ru=* | --r=*)
runstatedir=$ac_optarg ;;
-sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
ac_prev=sbindir ;;
-sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
......@@ -1288,7 +1277,7 @@ fi
for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
datadir sysconfdir sharedstatedir localstatedir includedir \
oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
libdir localedir mandir runstatedir
libdir localedir mandir
do
eval ac_val=\$$ac_var
# Remove trailing slashes.
......@@ -1441,7 +1430,6 @@ Fine tuning of the installation directories:
--sysconfdir=DIR read-only single-machine data [PREFIX/etc]
--sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
--localstatedir=DIR modifiable single-machine data [PREFIX/var]
--runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run]
--libdir=DIR object code libraries [EPREFIX/lib]
--includedir=DIR C header files [PREFIX/include]
--oldincludedir=DIR C header files for non-gcc [/usr/include]
......@@ -2627,12 +2615,12 @@ test -n "$target_alias" &&
JTS_PORT=1.13.0
 
CAPI_INTERFACE_CURRENT=12
CAPI_INTERFACE_REVISION=0
CAPI_INTERFACE_REVISION=1
CAPI_INTERFACE_AGE=11
 
VERSION_MAJOR=3
VERSION_MINOR=7
VERSION_PATCH=0rc2
VERSION_PATCH=1
VERSION="$VERSION_MAJOR.$VERSION_MINOR.$VERSION_PATCH"
VERSION_RELEASE=`echo "$VERSION" | sed -E 's/^([0-9]+\.[0-9]+\.[0-9]+).*$/\1/'`
 
......@@ -5824,7 +5812,7 @@ linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
lt_cv_deplibs_check_method=pass_all
;;
 
netbsd* | netbsdelf*-gnu)
netbsd*)
if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$'
else
......@@ -9510,9 +9498,6 @@ $as_echo_n "checking whether the $compiler linker ($LD) supports shared librarie
openbsd* | bitrig*)
with_gnu_ld=no
;;
linux* | k*bsd*-gnu | gnu*)
link_all_deplibs=no
;;
esac
 
ld_shlibs=yes
......@@ -9767,7 +9752,7 @@ _LT_EOF
fi
;;
 
netbsd* | netbsdelf*-gnu)
netbsd*)
if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
wlarc=
......@@ -10437,7 +10422,6 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; }
if test yes = "$lt_cv_irix_exported_symbol"; then
archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib'
fi
link_all_deplibs=no
else
archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib'
archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib'
......@@ -10459,7 +10443,7 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; }
esac
;;
 
netbsd* | netbsdelf*-gnu)
netbsd*)
if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out
else
......@@ -11574,18 +11558,6 @@ fi
dynamic_linker='GNU/Linux ld.so'
;;
 
netbsdelf*-gnu)
version_type=linux
need_lib_prefix=no
need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
soname_spec='${libname}${release}${shared_ext}$major'
shlibpath_var=LD_LIBRARY_PATH
shlibpath_overrides_runpath=no
hardcode_into_libs=yes
dynamic_linker='NetBSD ld.elf_so'
;;
netbsd*)
version_type=sunos
need_lib_prefix=no
......@@ -14898,7 +14870,7 @@ lt_prog_compiler_static_CXX=
;;
esac
;;
netbsd* | netbsdelf*-gnu)
netbsd*)
;;
*qnx* | *nto*)
# QNX uses GNU C++, but need to define -shared option too, otherwise
......@@ -15273,9 +15245,6 @@ $as_echo_n "checking whether the $compiler linker ($LD) supports shared librarie
;;
esac
;;
linux* | k*bsd*-gnu | gnu*)
link_all_deplibs_CXX=no
;;
*)
export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
;;
......@@ -15969,18 +15938,6 @@ fi
dynamic_linker='GNU/Linux ld.so'
;;
 
netbsdelf*-gnu)
version_type=linux
need_lib_prefix=no
need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
soname_spec='${libname}${release}${shared_ext}$major'
shlibpath_var=LD_LIBRARY_PATH
shlibpath_overrides_runpath=no
hardcode_into_libs=yes
dynamic_linker='NetBSD ld.elf_so'
;;
netbsd*)
version_type=sunos
need_lib_prefix=no
......@@ -21427,6 +21384,7 @@ See \`config.log' for more details" "$LINENO" 5; }
cat <<_LT_EOF >> "$cfgfile"
#! $SHELL
# Generated automatically by $as_me ($PACKAGE) $VERSION
# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
 
# Provide generalized library-building support services.
......
......@@ -2,7 +2,7 @@ dnl
dnl configure.in - autoconf input template to produce ./configure script
dnl
dnl version 2.52 is required for Cygwin libtool support
AC_PREREQ([2.52])
AC_PREREQ([2.63])
dnl local vars to hold user's preferences --------------------------------
AC_INIT([include/geos.h])
......@@ -15,7 +15,7 @@ JTS_PORT=1.13.0
dnl -- Version info for the CAPI
CAPI_INTERFACE_CURRENT=12
CAPI_INTERFACE_REVISION=0
CAPI_INTERFACE_REVISION=1
CAPI_INTERFACE_AGE=11
dnl
......@@ -24,7 +24,7 @@ dnl -- encoding ABI break at every release
dnl
VERSION_MAJOR=3
VERSION_MINOR=7
VERSION_PATCH=0rc2
VERSION_PATCH=1
VERSION="$VERSION_MAJOR.$VERSION_MINOR.$VERSION_PATCH"
VERSION_RELEASE=`echo "$VERSION" | sed -E 's/^([[0-9]+\.[0-9]+\.[0-9]+]).*$/\1/'`
......
geos (3.7.1-1~exp1) experimental; urgency=medium
* New upstream release.
* Add Build-Depends-Package field to symbols files.
* Refresh patches.
* Update symbols for amd64.
-- Bas Couwenberg <sebastic@debian.org> Fri, 30 Nov 2018 06:52:18 +0100
geos (3.7.0-1) unstable; urgency=medium
* New upstream release.
* Strip pre-release from symbols version.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Tue, 11 Sep 2018 07:38:23 +0200
geos (3.7.0~rc2-1~exp1) experimental; urgency=medium
* New upstream release candidate.
......
......@@ -32,7 +32,7 @@ Description: Geometry engine for GIS - Development files
Package: libgeos++-dev
Architecture: any
Section: libdevel
Depends: libgeos-3.7.0 (= ${binary:Version}),
Depends: libgeos-3.7.1 (= ${binary:Version}),
libgeos-dev,
${misc:Depends}
Suggests: libgdal-doc
......@@ -72,7 +72,7 @@ Description: Geometry engine for Geographic Information Systems - C Library
This package contains the C library. A C++ library is provided
by the libgeos-* package.
Package: libgeos-3.7.0
Package: libgeos-3.7.1
Architecture: any
Multi-Arch: same
Section: libs
......
# SymbolsHelper-Confirmed: 3.7.0~beta2 amd64
# SymbolsHelper-Confirmed: 3.7.0 ia64 riscv64
libgeos_c.so.1 #PACKAGE# #MINVER#
* Build-Depends-Package: libgeos-dev
GEOSArea@Base 3.4.2
GEOSArea_r@Base 3.4.2
GEOSBoundary@Base 3.4.2
......@@ -52,8 +53,8 @@ libgeos_c.so.1 #PACKAGE# #MINVER#
GEOSCoordSeq_getY_r@Base 3.4.2
GEOSCoordSeq_getZ@Base 3.4.2
GEOSCoordSeq_getZ_r@Base 3.4.2
GEOSCoordSeq_isCCW@Base 3.7.0~alpha
GEOSCoordSeq_isCCW_r@Base 3.7.0~alpha
GEOSCoordSeq_isCCW@Base 3.7.0
GEOSCoordSeq_isCCW_r@Base 3.7.0
GEOSCoordSeq_setOrdinate@Base 3.4.2
GEOSCoordSeq_setOrdinate_r@Base 3.4.2
GEOSCoordSeq_setX@Base 3.4.2
......@@ -75,8 +76,8 @@ libgeos_c.so.1 #PACKAGE# #MINVER#
GEOSDisjoint@Base 3.4.2
GEOSDisjoint_r@Base 3.4.2
GEOSDistance@Base 3.4.2
GEOSDistanceIndexed@Base 3.7.0~alpha
GEOSDistanceIndexed_r@Base 3.7.0~alpha
GEOSDistanceIndexed@Base 3.7.0
GEOSDistanceIndexed_r@Base 3.7.0
GEOSDistance_r@Base 3.4.2
GEOSEnvelope@Base 3.4.2
GEOSEnvelope_r@Base 3.4.2
......@@ -84,10 +85,10 @@ libgeos_c.so.1 #PACKAGE# #MINVER#
GEOSEqualsExact@Base 3.4.2
GEOSEqualsExact_r@Base 3.4.2
GEOSEquals_r@Base 3.4.2
GEOSFrechetDistance@Base 3.7.0~alpha
GEOSFrechetDistanceDensify@Base 3.7.0~alpha
GEOSFrechetDistanceDensify_r@Base 3.7.0~alpha
GEOSFrechetDistance_r@Base 3.7.0~alpha
GEOSFrechetDistance@Base 3.7.0
GEOSFrechetDistanceDensify@Base 3.7.0
GEOSFrechetDistanceDensify_r@Base 3.7.0
GEOSFrechetDistance_r@Base 3.7.0
GEOSFree@Base 3.4.2
GEOSFree_r@Base 3.4.2
GEOSGeomFromHEX_buf@Base 3.4.2
......@@ -110,8 +111,8 @@ libgeos_c.so.1 #PACKAGE# #MINVER#
GEOSGeomGetX_r@Base 3.4.2
GEOSGeomGetY@Base 3.4.2
GEOSGeomGetY_r@Base 3.4.2
GEOSGeomGetZ@Base 3.7.0~beta1
GEOSGeomGetZ_r@Base 3.7.0~beta1
GEOSGeomGetZ@Base 3.7.0
GEOSGeomGetZ_r@Base 3.7.0
GEOSGeomToHEX_buf@Base 3.4.2
GEOSGeomToHEX_buf_r@Base 3.4.2
GEOSGeomToWKB_buf@Base 3.4.2
......@@ -156,14 +157,14 @@ libgeos_c.so.1 #PACKAGE# #MINVER#
GEOSGeom_getPrecision_r@Base 3.6.0
GEOSGeom_getUserData@Base 3.6.0
GEOSGeom_getUserData_r@Base 3.6.0
GEOSGeom_getXMax@Base 3.7.0~alpha
GEOSGeom_getXMax_r@Base 3.7.0~alpha
GEOSGeom_getXMin@Base 3.7.0~alpha
GEOSGeom_getXMin_r@Base 3.7.0~alpha
GEOSGeom_getYMax@Base 3.7.0~alpha
GEOSGeom_getYMax_r@Base 3.7.0~alpha
GEOSGeom_getYMin@Base 3.7.0~alpha
GEOSGeom_getYMin_r@Base 3.7.0~alpha
GEOSGeom_getXMax@Base 3.7.0
GEOSGeom_getXMax_r@Base 3.7.0
GEOSGeom_getXMin@Base 3.7.0
GEOSGeom_getXMin_r@Base 3.7.0
GEOSGeom_getYMax@Base 3.7.0
GEOSGeom_getYMax_r@Base 3.7.0
GEOSGeom_getYMin@Base 3.7.0
GEOSGeom_getYMin_r@Base 3.7.0
GEOSGeom_setPrecision@Base 3.6.0
GEOSGeom_setPrecision_r@Base 3.6.0
GEOSGeom_setUserData@Base 3.6.0
......@@ -266,8 +267,8 @@ libgeos_c.so.1 #PACKAGE# #MINVER#
GEOSRelatePatternMatch_r@Base 3.4.2
GEOSRelatePattern_r@Base 3.4.2
GEOSRelate_r@Base 3.4.2
GEOSReverse@Base 3.7.0~alpha
GEOSReverse_r@Base 3.7.0~alpha
GEOSReverse@Base 3.7.0
GEOSReverse_r@Base 3.7.0
GEOSSTRtree_create@Base 3.4.2
GEOSSTRtree_create_r@Base 3.4.2
GEOSSTRtree_destroy@Base 3.4.2
......@@ -284,8 +285,8 @@ libgeos_c.so.1 #PACKAGE# #MINVER#
GEOSSTRtree_query_r@Base 3.4.2
GEOSSTRtree_remove@Base 3.4.2
GEOSSTRtree_remove_r@Base 3.4.2
GEOSSegmentIntersection@Base 3.7.0~alpha
GEOSSegmentIntersection_r@Base 3.7.0~alpha
GEOSSegmentIntersection@Base 3.7.0
GEOSSegmentIntersection_r@Base 3.7.0
GEOSSetSRID@Base 3.4.2
GEOSSetSRID_r@Base 3.4.2
GEOSSharedPaths@Base 3.4.2
......@@ -432,11 +433,10 @@ libgeos_c.so.1 #PACKAGE# #MINVER#
_ZNK4geos2io9WKBWriter18getOutputDimensionEv@Base 3.4.2
_ZNK4geos4geom16CoordinateFilter9filter_rwEPNS0_10CoordinateE@Base 3.4.2
_ZNK4geos4geom8Geometry7getSRIDEv@Base 3.4.2
_ZNSt6vectorIPKN4geos4geom10CoordinateESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0~alpha
_ZNSt6vectorIPN4geos4geom8GeometryESaIS3_EE12emplace_backIJS3_EEEvDpOT_@Base 3.7.0~alpha
(optional=templinst|arch=!alpha !amd64 !arm64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !s390x !sparc64)_ZNSt6vectorIPN4geos4geom8GeometryESaIS3_EE7reserveEj@Base 3.4.2
(optional=templinst|arch=alpha amd64 arm64 kfreebsd-amd64 mips64el ppc64 ppc64el s390x sparc64)_ZNSt6vectorIPN4geos4geom8GeometryESaIS3_EE7reserveEm@Base 3.4.2
(optional=templinst)_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag@Base 3.7.0~beta1
_ZNSt6vectorIPKN4geos4geom10CoordinateESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0
_ZNSt6vectorIPN4geos4geom8GeometryESaIS3_EE12emplace_backIJS3_EEEvDpOT_@Base 3.7.0
(optional=templinst)_ZNSt6vectorIPN4geos4geom8GeometryESaIS3_EE7reserveEm@Base 3.4.2
(optional=templinst)_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag@Base 3.7.0
(optional=templinst)_ZNSt7__cxx1115basic_stringbufIcSt11char_traitsIcESaIcEED0Ev@Base 3.4.2
(optional=templinst)_ZNSt7__cxx1115basic_stringbufIcSt11char_traitsIcESaIcEED1Ev@Base 3.4.2
(optional=templinst)_ZNSt7__cxx1115basic_stringbufIcSt11char_traitsIcESaIcEED2Ev@Base 3.4.2
......
......@@ -5,7 +5,7 @@ Forwarded: not-needed
--- a/configure
+++ b/configure
@@ -19372,7 +19372,7 @@ fi
@@ -19329,7 +19329,7 @@ fi
RUBY_ARCH_LIB_DIR=`$RUBY -rrbconfig -e 'puts RbConfig::CONFIG["archlibdir"] || Config::CONFIG["archlibdir"]'`
......
......@@ -23,7 +23,7 @@ PROJECT_NAME = GEOS
# This could be handy for archiving the generated documentation or
# if some version control system is used.
PROJECT_NUMBER = 3.7.0rc2
PROJECT_NUMBER = 3.7.1
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
......