Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package tn5250 for openSUSE:Factory checked 
in at 2024-07-31 13:30:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/tn5250 (Old)
 and      /work/SRC/openSUSE:Factory/.tn5250.new.7232 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "tn5250"

Wed Jul 31 13:30:17 2024 rev:29 rq:1190545 version:0.16.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/tn5250/tn5250.changes    2024-03-02 
23:24:05.168717375 +0100
+++ /work/SRC/openSUSE:Factory/.tn5250.new.7232/tn5250.changes  2024-07-31 
13:30:42.287280049 +0200
@@ -1,0 +2,5 @@
+Thu Jul 25 14:57:12 UTC 2024 - Marcus Meissner <meiss...@suse.com>
+
+- tn5250-gcc14.patch: fixed build failure with gcc14
+
+-------------------------------------------------------------------

New:
----
  tn5250-gcc14.patch

BETA DEBUG BEGIN:
  New:
- tn5250-gcc14.patch: fixed build failure with gcc14
BETA DEBUG END:

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

Other differences:
------------------
++++++ tn5250.spec ++++++
--- /var/tmp/diff_new_pack.OLlpj7/_old  2024-07-31 13:30:44.215359230 +0200
+++ /var/tmp/diff_new_pack.OLlpj7/_new  2024-07-31 13:30:44.219359394 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package tn5250
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -28,6 +28,7 @@
 Patch0:         tn5250-0.16.2-terminfo.dif
 Patch1:         tn5250-0.16.5-strings.patch
 Patch2:         tn5250-0.16.5-no-build-date.patch
+Patch3:         tn5250-gcc14.patch
 BuildRequires:  gcc-c++
 BuildRequires:  libtool
 BuildRequires:  ncurses-devel
@@ -60,6 +61,7 @@
 %patch -P 0 -p1
 %patch -P 1
 %patch -P 2
+%patch -P 3 -p1
 cp -p %{SOURCE1} .
 
 %build
@@ -78,7 +80,8 @@
 %postun -n lib5250-0 -p /sbin/ldconfig
 
 %files
-%doc BUGS COPYING README AUTHORS BUGS ChangeLog NEWS TODO XTerm README.SUSE
+%license COPYING
+%doc BUGS README AUTHORS BUGS ChangeLog NEWS TODO XTerm README.SUSE
 /usr/bin/*
 %{_mandir}/man1/*
 %{_mandir}/man5/*

++++++ tn5250-gcc14.patch ++++++
Index: tn5250-0.16.5/src/dbuffer.h
===================================================================
--- tn5250-0.16.5.orig/src/dbuffer.h
+++ tn5250-0.16.5/src/dbuffer.h
@@ -108,6 +108,9 @@ typedef struct _Tn5250DBuffer Tn5250DBuf
 #define tn5250_dbuffer_mdt(This) ((This)->master_mdt)
 #define tn5250_dbuffer_set_mdt(This) ((This)->master_mdt = 1)
 
+void tn5250_dbuffer_prevword(Tn5250DBuffer * This);
+void tn5250_dbuffer_nextword(Tn5250DBuffer * This);
+
 #ifdef __cplusplus
 }
 
Index: tn5250-0.16.5/src/tn5250-private.h
===================================================================
--- tn5250-0.16.5.orig/src/tn5250-private.h
+++ tn5250-0.16.5/src/tn5250-private.h
@@ -58,6 +58,8 @@
 #include <sys/wait.h>
 #endif
 
+#include <sys/stat.h>
+
 #ifdef HAVE_FCNTL_H
 #include <fcntl.h>
 #endif
@@ -204,6 +206,9 @@ INT WINAPI WINSOCK_select(INT nfds, ws_f
 
 /* END: of really ugly network portability layer. */
 
+void tn3270_stream_send_packet(Tn5250Stream * This, int length, unsigned char 
* data);
+
+
 #endif                         /* PRIVATE_H */
 
 /* vi:set cindent sts=3 sw=3: */
Index: tn5250-0.16.5/src/telnetstr.c
===================================================================
--- tn5250-0.16.5.orig/src/telnetstr.c
+++ tn5250-0.16.5/src/telnetstr.c
@@ -116,7 +116,7 @@ static const UCHAR SB_Str_TermType[]={IA
  #define TNSB_LOG      log_SB_buf
  #define LOGERROR      logError
 
-static char *getTelOpt(what)
+static char *getTelOpt(int what)
 {
    char *wcp, wbuf[10];
 

Reply via email to