Hello community,

here is the log from the commit of package noson for openSUSE:Factory checked 
in at 2020-06-28 23:07:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/noson (Old)
 and      /work/SRC/openSUSE:Factory/.noson.new.3060 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "noson"

Sun Jun 28 23:07:00 2020 rev:8 rq:817491 version:2.3.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/noson/noson.changes      2020-01-19 
20:58:20.008078486 +0100
+++ /work/SRC/openSUSE:Factory/.noson.new.3060/noson.changes    2020-06-28 
23:08:44.271339209 +0200
@@ -1,0 +2,6 @@
+Fri Jun 26 11:44:37 UTC 2020 - Frederic Crozat <[email protected]>
+
+- Update to 2.3.1:
+  * Fix build for SunOS
+
+-------------------------------------------------------------------

Old:
----
  2.3.0.tar.gz

New:
----
  2.3.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ noson.spec ++++++
--- /var/tmp/diff_new_pack.V4O45t/_old  2020-06-28 23:08:44.927341388 +0200
+++ /var/tmp/diff_new_pack.V4O45t/_new  2020-06-28 23:08:44.931341401 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package noson
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,12 +12,12 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:           noson
-Version:        2.3.0
+Version:        2.3.1
 Release:        0
 Summary:        C++ library for accessing sonos devices
 License:        GPL-3.0-or-later

++++++ 2.3.0.tar.gz -> 2.3.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/noson-2.3.0/noson/CMakeLists.txt 
new/noson-2.3.1/noson/CMakeLists.txt
--- old/noson-2.3.0/noson/CMakeLists.txt        2020-01-03 13:34:28.000000000 
+0100
+++ new/noson-2.3.1/noson/CMakeLists.txt        2020-05-06 19:14:21.000000000 
+0200
@@ -9,7 +9,7 @@
 # set lib version here
 set (noson_VERSION_MAJOR 2)
 set (noson_VERSION_MINOR 3)
-set (noson_VERSION_PATCH 0)
+set (noson_VERSION_PATCH 1)
 
 set (noson_VERSION 
${noson_VERSION_MAJOR}.${noson_VERSION_MINOR}.${noson_VERSION_PATCH})
 set (NOSON_LIB_VERSION ${noson_VERSION})
@@ -351,6 +351,11 @@
   endif ()
 endif ()
 
+if (${CMAKE_SYSTEM_NAME} STREQUAL "SunOS")
+  find_library (SOCKET socket REQUIRED)
+  target_link_libraries (noson socket)
+endif ()
+
 set_target_properties (noson PROPERTIES
   VERSION "${NOSON_LIB_VERSION}"
   SOVERSION "${NOSON_LIB_SOVERSION}")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/noson-2.3.0/noson/src/private/os/unix/os-types.h 
new/noson-2.3.1/noson/src/private/os/unix/os-types.h
--- old/noson-2.3.0/noson/src/private/os/unix/os-types.h        2020-01-03 
13:34:28.000000000 +0100
+++ new/noson-2.3.1/noson/src/private/os/unix/os-types.h        2020-05-06 
19:14:21.000000000 +0200
@@ -18,7 +18,9 @@
 typedef long LONG;
 typedef LONG HRESULT;
 
+#ifndef _FILE_OFFSET_BITS
 #define _FILE_OFFSET_BITS 64
+#endif
 #define FILE_BEGIN        SEEK_SET
 #define FILE_CURRENT      SEEK_CUR
 #define FILE_END          SEEK_END


Reply via email to