From 17267aa2ed1a5e5d29cb1bc860ec3ab82a953ff6 Mon Sep 17 00:00:00 2001 From: Dennis Bonke Date: Sun, 6 Jun 2021 02:59:28 +0200 Subject: [PATCH] options/linux: Add a dummy sys/syscall.h header Signed-off-by: Dennis Bonke --- options/linux/include/sys/syscall.h | 6 ++++++ options/linux/meson.build | 1 + 2 files changed, 7 insertions(+) create mode 100644 options/linux/include/sys/syscall.h diff --git a/options/linux/include/sys/syscall.h b/options/linux/include/sys/syscall.h new file mode 100644 index 00000000..b3bf6b15 --- /dev/null +++ b/options/linux/include/sys/syscall.h @@ -0,0 +1,6 @@ +#ifndef _SYS_SYSCALL_H +#define _SYS_SYSCALL_H + +// OpenSSL wants this header to exist + +#endif // _SYS_SYSCALL_H diff --git a/options/linux/meson.build b/options/linux/meson.build index 9dbc63c4..5aa09bf4 100644 --- a/options/linux/meson.build +++ b/options/linux/meson.build @@ -88,6 +88,7 @@ if not no_headers 'include/sys/random.h', 'include/sys/sendfile.h', 'include/sys/signalfd.h', + 'include/sys/syscall.h', 'include/sys/sysmacros.h', 'include/sys/timerfd.h', 'include/sys/eventfd.h',