sys_siglist
OBS-URL: https://build.opensuse.org/package/show/M17N/xemacs?expand=0&rev=110
This commit is contained in:
parent
16c4a94330
commit
36a2221062
15
xemacs-21.5.34-strsignal.patch
Normal file
15
xemacs-21.5.34-strsignal.patch
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
---
|
||||||
|
src/process.c | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
--- src/process.c
|
||||||
|
+++ src/process.c 2020-10-09 07:55:43.086125891 +0000
|
||||||
|
@@ -1569,7 +1569,7 @@ const char *
|
||||||
|
signal_name (int signum)
|
||||||
|
{
|
||||||
|
if (signum >= 0 && signum < NSIG)
|
||||||
|
- return (const char *) sys_siglist[signum];
|
||||||
|
+ return (const char *) strsignal(signum);
|
||||||
|
|
||||||
|
return (const char *) GETTEXT ("unknown signal");
|
||||||
|
}
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 9 07:57:26 UTC 2020 - Dr. Werner Fink <werner@suse.de>
|
||||||
|
|
||||||
|
- Add patch xemacs-21.5.34-strsignal.patch as sys_siglist is deprecated
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Sep 29 11:13:40 UTC 2020 - Cliff Zhao <qzhao@suse.com>
|
Tue Sep 29 11:13:40 UTC 2020 - Cliff Zhao <qzhao@suse.com>
|
||||||
|
|
||||||
|
@ -112,6 +112,8 @@ Patch60: xemacs-21.5.34-sbrk.patch
|
|||||||
# PATCH-FIX-SUSE fix make build race
|
# PATCH-FIX-SUSE fix make build race
|
||||||
Patch61: xemacs-21.5.34-boo1115177.patch
|
Patch61: xemacs-21.5.34-boo1115177.patch
|
||||||
Patch62: xemacs-libX11-boo1175028.patch
|
Patch62: xemacs-libX11-boo1175028.patch
|
||||||
|
# PATCH-FIX-SUSE sys_siglist is deprecated
|
||||||
|
Patch63: xemacs-21.5.34-strsignal.patch
|
||||||
Requires(pre): permissions
|
Requires(pre): permissions
|
||||||
Requires: ctags
|
Requires: ctags
|
||||||
Requires: efont-unicode
|
Requires: efont-unicode
|
||||||
@ -207,6 +209,7 @@ echo Use xfs, that is XFontSet support for internationalized menubar.
|
|||||||
%patch60 -p0
|
%patch60 -p0
|
||||||
%patch61 -p0
|
%patch61 -p0
|
||||||
%patch62 -p0
|
%patch62 -p0
|
||||||
|
%patch63 -p0
|
||||||
%patch0 -p1
|
%patch0 -p1
|
||||||
find lisp/ etc/ -name '*.elc' | xargs -r rm -f
|
find lisp/ etc/ -name '*.elc' | xargs -r rm -f
|
||||||
find . -name CVS -type d | xargs rm -rf
|
find . -name CVS -type d | xargs rm -rf
|
||||||
|
Loading…
Reference in New Issue
Block a user