[geos-commits] [SCM] GEOS branch 3.10 updated. b4e7c5b3b320c9ffe52737d6b32e238c5feeb9bd

git at osgeo.org git at osgeo.org
Tue Nov 14 14:45:03 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.10 has been updated
       via  b4e7c5b3b320c9ffe52737d6b32e238c5feeb9bd (commit)
       via  575bed3f65920befac1f676564d036b4616f3eeb (commit)
      from  9527bc226211379cc53f57823a87472764965bd9 (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 b4e7c5b3b320c9ffe52737d6b32e238c5feeb9bd
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Tue Nov 14 14:44:41 2023 -0800

    Fix build on Illumus (GH-971)

diff --git a/NEWS b/NEWS
index 3042a8703..aa178ccbe 100644
--- a/NEWS
+++ b/NEWS
@@ -2,7 +2,7 @@
 20xx-xx-xx
 
 - Fixes/Improvements:
-
+  - Fix build on Illumus (GH-971)
 
 ## Changes in 3.10.6
 2023-11-11

commit 575bed3f65920befac1f676564d036b4616f3eeb
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                    | 2 +-
 util/geosop/cxxopts.hpp | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
GEOS


More information about the geos-commits mailing list