Hello community,

here is the log from the commit of package tcsh for openSUSE:Factory checked in 
at 2016-07-01 09:55:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/tcsh (Old)
 and      /work/SRC/openSUSE:Factory/.tcsh.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "tcsh"

Changes:
--------
--- /work/SRC/openSUSE:Factory/tcsh/tcsh.changes        2016-04-11 
09:11:36.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.tcsh.new/tcsh.changes   2016-07-01 
09:55:26.000000000 +0200
@@ -1,0 +2,6 @@
+Mon Apr  4 09:00:35 UTC 2016 - [email protected]
+
+- union-wait.patch: don't define BSDWAIT on glibc, future versions will
+  remove support for union wait.
+
+-------------------------------------------------------------------

New:
----
  union-wait.patch

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

Other differences:
------------------
++++++ tcsh.spec ++++++
--- /var/tmp/diff_new_pack.xHLuqT/_old  2016-07-01 09:55:27.000000000 +0200
+++ /var/tmp/diff_new_pack.xHLuqT/_new  2016-07-01 09:55:27.000000000 +0200
@@ -35,6 +35,7 @@
 # PATCH-FIX-SUSE add history file locking (bsc#901076)
 Patch9:         tcsh-6.18.03-history-file-locking.patch
 Patch10:        tcsh-6.18.03-history-merge.dif
+Patch11:        union-wait.patch
 BuildRequires:  autoconf
 BuildRequires:  ncurses-devel
 BuildRequires:  screen
@@ -62,6 +63,7 @@
 %patch9 -b .histlock
 %patch10 -b .histmerg
 %patch0 -b .0
+%patch11 -p1
 
 %build
 

++++++ union-wait.patch ++++++
Index: tcsh-6.19.00/sh.proc.c
===================================================================
--- tcsh-6.19.00.orig/sh.proc.c
+++ tcsh-6.19.00/sh.proc.c
@@ -47,8 +47,8 @@ RCSID("$tcsh: sh.proc.c,v 3.127 2015/02/
 # define HZ 16
 #endif /* aiws */
 
-#if defined(_BSD) || (defined(IRIS4D) && __STDC__) || defined(__lucid) || 
defined(__linux__) || defined(__GNU__) || defined(__GLIBC__)
-# if !defined(__ANDROID__)
+#if defined(_BSD) || (defined(IRIS4D) && __STDC__) || defined(__lucid) || 
defined(__linux__) || defined(__GNU__)
+# if !defined(__ANDROID__) && !defined(__GLIBC__)
 #  define BSDWAIT
 # endif
 #endif /* _BSD || (IRIS4D && __STDC__) || __lucid || glibc */

Reply via email to