[geos-commits] [SCM] GEOS branch 3.11 updated. 6145340de03e26e6a1bbd0f1f2e676b56ad1b7c9

git at osgeo.org git at osgeo.org
Tue Nov 14 14:44:22 PST 2023


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GEOS".

The branch, 3.11 has been updated
       via  6145340de03e26e6a1bbd0f1f2e676b56ad1b7c9 (commit)
       via  3bed0348b2f04161a0c7b7cedd7491c4cbea9f20 (commit)
      from  3c69d8624c66e065e989a315d7cf96baf246ba1d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 6145340de03e26e6a1bbd0f1f2e676b56ad1b7c9
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Tue Nov 14 14:43:59 2023 -0800

    Fix build on Illumus (GH-971)

diff --git a/NEWS.md b/NEWS.md
index f5776fbd8..8a69f69b0 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,6 +1,8 @@
 ## Changes in 3.11.4
 xxxx-xx-xx
+
 - Fixes/Improvements:
+  - Fix build on Illumus (GH-971)
 
 ## Changes in 3.11.3
 2023-11-11

commit 3bed0348b2f04161a0c7b7cedd7491c4cbea9f20
Author: jMichaelA <jacob.m.adams at gmail.com>
Date:   Tue Nov 14 15:41:32 2023 -0700

    Added illumos macro for int8_t parse_value override. chars are signed in illumos implementation of stdint.h. (#971)

diff --git a/util/geosop/cxxopts.hpp b/util/geosop/cxxopts.hpp
index 6ec7998a1..1acfb88c2 100644
--- a/util/geosop/cxxopts.hpp
+++ b/util/geosop/cxxopts.hpp
@@ -677,12 +677,14 @@ namespace cxxopts
       integer_parser(text, value);
     }
 
+    #ifndef __illumos__
     inline
     void
     parse_value(const std::string& text, int8_t& value)
     {
       integer_parser(text, value);
     }
+    #endif
 
     inline
     void

-----------------------------------------------------------------------

Summary of changes:
 NEWS.md                 | 2 ++
 util/geosop/cxxopts.hpp | 2 ++
 2 files changed, 4 insertions(+)


hooks/post-receive
-- 
GEOS


More information about the geos-commits mailing list