From: Pierre Ossman Date: Wed, 3 Oct 2007 15:00:36 +0000 (+0000) Subject: Don't call pa_rtsig_configure() when we lack the necessary defines. X-Git-Tag: 1.0_branch~2762^2~1^2~39 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cb400878fe52b1418ac9e12389e5a4fa3231732e;p=profile%2Fivi%2Fpulseaudio.git Don't call pa_rtsig_configure() when we lack the necessary defines. git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1931 fefdeb5f-60dc-0310-8127-8f9354f1896f --- diff --git a/src/daemon/main.c b/src/daemon/main.c index 0e759d2..c135a6b 100644 --- a/src/daemon/main.c +++ b/src/daemon/main.c @@ -614,7 +614,9 @@ int main(int argc, char *argv[]) { else pa_log_info("Dude, your kernel stinks! The chef's recommendation today is Linux with high-resolution timers enabled!"); +#ifdef SIGRTMIN pa_rtsig_configure(SIGRTMIN, SIGRTMAX); +#endif pa_assert_se(mainloop = pa_mainloop_new());