Hello community, here is the log from the commit of package aranym for openSUSE:Factory checked in at 2018-02-27 16:59:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/aranym (Old) and /work/SRC/openSUSE:Factory/.aranym.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "aranym" Tue Feb 27 16:59:46 2018 rev:40 rq:580359 version:1.0.2 Changes: -------- --- /work/SRC/openSUSE:Factory/aranym/aranym.changes 2016-03-29 10:40:03.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.aranym.new/aranym.changes 2018-02-27 17:00:07.743335103 +0100 @@ -1,0 +2,5 @@ +Mon Feb 26 23:41:38 UTC 2018 - [email protected] + +- arm-ucontext-t.patch: use ucontext_t instead of struct ucontext + +------------------------------------------------------------------- New: ---- arm-ucontext-t.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ aranym.spec ++++++ --- /var/tmp/diff_new_pack.04Gq3v/_old 2018-02-27 17:00:10.647230180 +0100 +++ /var/tmp/diff_new_pack.04Gq3v/_new 2018-02-27 17:00:10.651230036 +0100 @@ -40,6 +40,7 @@ Patch1: fmovecr-const.patch Patch2: nan-sign.patch Patch3: ncr5380-mode-reg.patch +Patch4: arm-ucontext-t.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build Requires(post): permissions @@ -77,6 +78,7 @@ %patch1 -p1 %patch2 -p1 %patch3 -p1 +%patch4 -p1 # Don't remove -g from CFLAGS sed -i -e 's,/-g,/-:,' configure.ac configure ++++++ arm-ucontext-t.patch ++++++ Index: aranym-1.0.2/src/Unix/linux/sigsegv_linux_arm.cpp =================================================================== --- aranym-1.0.2.orig/src/Unix/linux/sigsegv_linux_arm.cpp +++ aranym-1.0.2/src/Unix/linux/sigsegv_linux_arm.cpp @@ -209,7 +209,7 @@ buserr: } static void segfault_vec(int /*sig*/, siginfo_t *sip, void *uc) { - mcontext_t *context = &(((struct ucontext *)uc)->uc_mcontext); + mcontext_t *context = &(((ucontext_t *)uc)->uc_mcontext); unsigned long *regs = &context->arm_r0; uintptr addr = (uintptr)sip->si_addr; addr -= FMEMORY;
