[geos-commits] [SCM] GEOS branch 3.12 updated. 60e3e2d820f746dd2173c40f780fb2deacf797cc

git at osgeo.org git at osgeo.org
Tue Nov 14 14:43:36 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.12 has been updated
       via  60e3e2d820f746dd2173c40f780fb2deacf797cc (commit)
       via  71df351ad58d55dd29e0bbeea80a5a91f6acdfa4 (commit)
      from  f8b3a946050bda40a8009a523659d1fd12975824 (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 60e3e2d820f746dd2173c40f780fb2deacf797cc
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Tue Nov 14 14:43:08 2023 -0800

    Fix build on Illumus (GH-971)

diff --git a/NEWS.md b/NEWS.md
index 55b1af59a..a22aff3d7 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,6 +1,9 @@
 ## Changes in 3.12.2
 xxxx-xx-xx
 
+- Fixes:
+  - Fix build on Illumus (GH-971)
+
 ## Changes in 3.12.1
 2023-11-11
 

commit 71df351ad58d55dd29e0bbeea80a5a91f6acdfa4
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                 | 3 +++
 util/geosop/cxxopts.hpp | 2 ++
 2 files changed, 5 insertions(+)


hooks/post-receive
-- 
GEOS


More information about the geos-commits mailing list