SHA256
1
0
forked from pool/ladish

Accepting request 905767 from home:Guillaume_G:branches:multimedia:apps

- Fix build on aarch64:
  * ladish-add-aarch64.patch

OBS-URL: https://build.opensuse.org/request/show/905767
OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/ladish?expand=0&rev=9
This commit is contained in:
2021-07-16 14:35:18 +00:00
committed by Git OBS Bridge
parent 0353a0e43b
commit 52858de528
3 changed files with 18 additions and 0 deletions
+6
View File
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Mon Jul 12 06:40:44 UTC 2021 - Guillaume GARDET <guillaume.gardet@opensuse.org>
- Fix build on aarch64:
* ladish-add-aarch64.patch
-------------------------------------------------------------------
Sat Apr 17 21:56:04 UTC 2021 - Andreas Schwab <schwab@suse.de>
+1
View File
@@ -26,6 +26,7 @@ Group: Productivity/Multimedia/Sound/Utilities
URL: http://ladish.org/
Source: %{name}-%{version}.tar.xz
Patch0: ladish-version.patch
Patch1: ladish-add-aarch64.patch
BuildRequires: alsa-devel
BuildRequires: autoconf
BuildRequires: automake
+11
View File
@@ -0,0 +1,11 @@
--- ladish-1+git.20210227/daemon/siginfo.c.orig 2021-06-09 07:42:35.793794389 +0000
+++ ladish-1+git.20210227/daemon/siginfo.c 2021-06-09 07:43:18.772662596 +0000
@@ -58,7 +58,7 @@
#define SIGINFO_MAX_BT_FRAMES 20
-#if defined(SA_SIGINFO) && !defined(__arm__) && !defined(__ia64__) && !defined(__alpha__) && !defined (__FreeBSD_kernel__) && !defined (__sh__) && !defined(__APPLE__)
+#if defined(SA_SIGINFO) && !defined(__arm__) && !defined(__aarch64__) && !defined(__ia64__) && !defined(__alpha__) && !defined (__FreeBSD_kernel__) && !defined (__sh__) && !defined(__APPLE__)
# define USE_UCONTEXT
# include <ucontext.h>
#endif