Codebase list guitarix / caa9aac
Imported Debian patch 0.28.1-2 Roland Stigge authored 10 years ago Ross Gammon committed 8 years ago
3 changed file(s) with 22 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 guitarix (0.28.1-2) unstable; urgency=low
1
2 * Added upstream patch to fix build problem on hurd
3
4 -- Roland Stigge <stigge@antcom.de> Fri, 02 Aug 2013 21:11:49 +0200
5
06 guitarix (0.28.1-1) unstable; urgency=low
17
28 * New upstream release
0 diff --git a/trunk/src/gx_head/engine/gx_jack.cpp b/trunk/src/gx_head/engine/gx_jack.cpp
1 index 8ab320a..dd3f4f5 100644
2 --- a/src/gx_head/engine/gx_jack.cpp
3 +++ b/src/gx_head/engine/gx_jack.cpp
4 @@ -55,6 +55,10 @@ string GxJack::get_default_instancename() {
5
6 static unsigned int rt_watchdog_counter;
7
8 +#ifndef SCHED_IDLE
9 +#define SCHED_IDLE SCHED_OTHER // non-linux systems
10 +#endif
11 +
12 static void *rt_watchdog_run(void *p) {
13 struct sched_param spar;
14 spar.sched_priority = 0;
00 01-fix-linux-only.patch
1 02-corr-sched-idle.patch