SHA256
3
0
forked from pool/ncurses
Dr. Werner Fink 2016-09-20 11:52:37 +00:00 committed by Git OBS Bridge
parent 7633cdb49e
commit 40a77d90d1
3 changed files with 9 additions and 37 deletions

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ecdf159ed89b4babebc810d28171df85b0d0a3fc7df09b21597388f6655dad5b
size 1106137
oid sha256:b133dd9fc1f8a9e969c81dfbd127ad29b5e8ff86eb7197db4ee88d189c2aa2f7
size 1109513

View File

@ -1,35 +0,0 @@
# bnc#995148 cscope hangs indefinitely after control-z
# recurisve macro definition of sigprocmask
--- ncurses/tinfo/lib_data.c 2016-09-03 11:37:20.223406956 -0500
+++ ncurses/tinfo/lib_data.c 2016-09-03 11:39:07.885069978 -0500
@@ -371,7 +371,7 @@ _nc_sigprocmask(int how, const sigset_t
if ((pthread_sigmask))
return pthread_sigmask(how, newmask, oldmask);
else
- return sigprocmask(how, newmask, oldmask);
+ return (sigprocmask)(how, newmask, oldmask);
}
#endif
#endif /* USE_PTHREADS */
--- ncurses/curses.priv.h.orig 2016-09-04 18:52:55.639691452 -0500
+++ ncurses/curses.priv.h 2016-09-04 18:53:34.248200946 -0500
@@ -561,7 +561,7 @@ weak_symbol(pthread_mutexattr_settype);
weak_symbol(pthread_mutexattr_init);
extern NCURSES_EXPORT(int) _nc_sigprocmask(int, const sigset_t *, sigset_t *);
# undef sigprocmask
-# define sigprocmask _nc_sigprocmask
+# define sigprocmask(a, b, c) _nc_sigprocmask(a, b, c)
# endif
#endif
@@ -581,7 +581,7 @@ weak_symbol(pthread_self);
weak_symbol(pthread_equal);
extern NCURSES_EXPORT(int) _nc_sigprocmask(int, const sigset_t *, sigset_t *);
# undef sigprocmask
-# define sigprocmask _nc_sigprocmask
+# define sigprocmask(a, b, c) _nc_sigprocmask(a, b, c)
# endif
#endif /* USE_PTHREADS_EINTR */

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Mon Sep 19 06:52:26 UTC 2016 - werner@suse.de
- Add ncurses patch 20160917
+ build-fix for gnat6, which unhelpfully attempts to compile C files.
+ fix typo in 20160910 changes (Debian #837892, patch by Sven Joachim).
-------------------------------------------------------------------
Mon Sep 12 12:55:25 UTC 2016 - werner@suse.de