Codebase list geos / e48e971
Add patch to fix isnan() detection in configure. Bas Couwenberg 7 years ago
3 changed file(s) with 19 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
00 geos (3.5.0-4) UNRELEASED; urgency=medium
11
22 * Bump Standards-Version to 3.9.8, no changes.
3 * Add patch to fix isnan() detection in configure.
34
45 -- Bas Couwenberg <sebastic@debian.org> Fri, 15 Apr 2016 18:13:48 +0200
56
0 Description: Look for isnan in std:: namespace.
1 Tested with gcc 4.8.4
2 Author: Sandro Santilli <strk@keybit.net>
3 Origin: https://trac.osgeo.org/geos/changeset/4169/
4 Bug-Debian: https://bugs.debian.org/831177
5
6 --- a/configure.ac
7 +++ b/configure.ac
8 @@ -197,7 +197,7 @@ dnl of isnan().
9 AC_LANG_PUSH([C++])
10 AC_CACHE_CHECK([for isnan], ac_cv_isnan,
11 [AC_TRY_LINK([#include <cmath>],
12 - [double x; int y; y = isnan(x);],
13 + [double x; int y; y = std::isnan(x);],
14 ac_cv_isnan=yes,
15 ac_cv_isnan=no
16 )])
22 ruby2
33 disable-docygen-html-timestamp
44 spelling-errors.patch
5 look-for-isnan-in-std-namespace.patch