mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 08:53:08 +01:00
Properly check for syscall (#9845)
This commit is contained in:
parent
02fde5f1aa
commit
ba4d9709c6
1 changed files with 1 additions and 1 deletions
|
|
@ -355,7 +355,7 @@ def configure(conf):
|
|||
features = 'c',
|
||||
mandatory = False,
|
||||
execute = False,
|
||||
fragment = "#include <sys/syscall.h>\nint main () { syscall(SYS_ioprio_set, 1, 0, 8192); return 0; }")
|
||||
fragment = "#include <unistd.h>\n#include <sys/syscall.h>\nint main () { syscall(SYS_ioprio_set, 1, 0, 8192); return 0; }")
|
||||
|
||||
if have_sys_ioprio:
|
||||
conf.define('HAVE_IOPRIO', 1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue