Commit 06bb5905 authored by Janne Grunau's avatar Janne Grunau

threads: test for sys/param.h and include it for sysctl on OpenBSD

parent 1adba23c
...@@ -1140,6 +1140,7 @@ HAVE_LIST=" ...@@ -1140,6 +1140,7 @@ HAVE_LIST="
symver_gnu_asm symver_gnu_asm
sysctl sysctl
sys_mman_h sys_mman_h
sys_param_h
sys_resource_h sys_resource_h
sys_select_h sys_select_h
sys_soundcard_h sys_soundcard_h
...@@ -2871,6 +2872,7 @@ check_header dxva2api.h ...@@ -2871,6 +2872,7 @@ check_header dxva2api.h
check_header malloc.h check_header malloc.h
check_header poll.h check_header poll.h
check_header sys/mman.h check_header sys/mman.h
check_header sys/param.h
check_header sys/resource.h check_header sys/resource.h
check_header sys/select.h check_header sys/select.h
check_header vdpau/vdpau.h check_header vdpau/vdpau.h
......
...@@ -37,6 +37,9 @@ ...@@ -37,6 +37,9 @@
#elif HAVE_GETSYSTEMINFO #elif HAVE_GETSYSTEMINFO
#include <windows.h> #include <windows.h>
#elif HAVE_SYSCTL #elif HAVE_SYSCTL
#if HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#include <sys/types.h> #include <sys/types.h>
#include <sys/sysctl.h> #include <sys/sysctl.h>
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment