Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libixion for openSUSE:Factory 
checked in at 2025-01-17 18:36:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libixion (Old)
 and      /work/SRC/openSUSE:Factory/.libixion.new.5589 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libixion"

Fri Jan 17 18:36:53 2025 rev:25 rq:1238037 version:0.19.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/libixion/libixion.changes        2024-03-02 
23:23:16.146941648 +0100
+++ /work/SRC/openSUSE:Factory/.libixion.new.5589/libixion.changes      
2025-01-17 18:36:57.875942542 +0100
@@ -1,0 +2,6 @@
+Tue Jan 14 00:51:43 UTC 2025 - Christophe Marin <[email protected]>
+
+- Add upstream change to fix failure with -Werror=undef:
+  * 0001-Fix-_WIN32-is-not-defined-when-not-on-Windows.patch
+
+-------------------------------------------------------------------

New:
----
  0001-Fix-_WIN32-is-not-defined-when-not-on-Windows.patch

BETA DEBUG BEGIN:
  New:- Add upstream change to fix failure with -Werror=undef:
  * 0001-Fix-_WIN32-is-not-defined-when-not-on-Windows.patch
BETA DEBUG END:

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

Other differences:
------------------
++++++ libixion.spec ++++++
--- /var/tmp/diff_new_pack.ttBzdQ/_old  2025-01-17 18:36:58.375963261 +0100
+++ /var/tmp/diff_new_pack.ttBzdQ/_new  2025-01-17 18:36:58.375963261 +0100
@@ -26,6 +26,8 @@
 URL:            https://gitlab.com/ixion/ixion
 Source:         http://kohei.us/files/ixion/src/%{name}-%{version}.tar.xz
 Patch0:         libixion-boost-system.patch
+# PATCH-FIX-UPSTREAM
+Patch1:         0001-Fix-_WIN32-is-not-defined-when-not-on-Windows.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  coreutils

++++++ 0001-Fix-_WIN32-is-not-defined-when-not-on-Windows.patch ++++++
>From 7b1df6fc2b989d8a64edaa47fe04edea95c45174 Mon Sep 17 00:00:00 2001
From: Stefan Gerlach <[email protected]>
Date: Thu, 25 Jul 2024 08:21:38 +0000
Subject: [PATCH] Fix "_WIN32" is not defined when not on Windows.

---
 include/ixion/env.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/ixion/env.hpp b/include/ixion/env.hpp
index 92812e3..7fee070 100644
--- a/include/ixion/env.hpp
+++ b/include/ixion/env.hpp
@@ -33,7 +33,7 @@
   #define IXION_DLLPUBLIC_VAR IXION_DLLPUBLIC extern
 #endif
 
-#if _WIN32
+#ifdef _WIN32
 #define IXION_MOD_EXPORT __declspec(dllexport)
 #else
 #define IXION_MOD_EXPORT __attribute__ ((visibility ("default")))
-- 
2.47.1

Reply via email to