Skip to content
Commits on Source (2)
proj (5.0.0~rc5-1) UNRELEASED; urgency=medium
proj (5.0.0~rc5-1~exp1) experimental; urgency=medium
* New upstream release candidate.
* Drop install-nad-gtx.patch, applied upstream.
* Update copyright years for Charles Karney.
* Add upstream patch to fix gie test failures for missing grids.
-- Bas Couwenberg <sebastic@debian.org> Fri, 23 Feb 2018 20:40:32 +0100
-- Bas Couwenberg <sebastic@debian.org> Fri, 23 Feb 2018 22:13:06 +0100
proj (5.0.0~rc4-1~exp2) experimental; urgency=medium
......
Description: Don't reset errno when skipping tests.
The error number should not be reset until a new instance of "operation
..." is reached. The ignore-feature initially worked by accident since
pj_errno was not being reset when calling proj_errno_reset. This was
fixed in #808, which subsequently caused ignored tests to fail.
Author: Kristian Evers <kristianevers@gmail.com>
Origin: https://github.com/OSGeo/proj.4/pull/820/commits/ad4b6e12f137817217058f60c36ad51a4d29e417
Bug: https://github.com/OSGeo/proj.4/issues/819
--- a/src/gie.c
+++ b/src/gie.c
@@ -332,7 +332,6 @@ static int another_failure (void) {
static int another_skip (void) {
T.op_skip++;
T.total_skip++;
- proj_errno_reset (T.P);
return 0;
}
Dont-reset-errno-when-skipping-tests.patch