freebsd-ports/audio/beast/files/patch-birnet_birnetcpu.c
Pietro Cerutti 2d6d99dede - Update to 0.7.1
- Fix build with GCC 4.2
- Adopt maintainship

Approved by:	miwi (mentor)
2008-02-28 21:43:28 +00:00

11 lines
455 B
C

--- birnet/birnetcpu.cc.orig 2008-02-26 23:19:28.000000000 +0100
+++ birnet/birnetcpu.cc 2008-02-26 23:25:30.000000000 +0100
@@ -201,7 +201,7 @@
struct sigaction action, old_action;
action.sa_handler = cpu_info_sigill_handler;
sigemptyset (&action.sa_mask);
- action.sa_flags = SA_NOMASK;
+ action.sa_flags = SA_NODEFER;
sigaction (SIGILL, &action, &old_action);
if (setjmp (cpu_info_jmp_buf) == 0)
{