Merge pull request #865 from Ferenc-/fix-define-for-linux-syscall

Fix `check_c_source_compiles` of `HAVE_SYSCALL_GETRANDOM`
This commit is contained in:
Sebastian Pipping 2024-05-01 21:47:08 +02:00 committed by GitHub
commit 9cbdb916de
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View file

@ -60,6 +60,7 @@ if(NOT HAVE_OFF_T)
endif()
check_c_source_compiles("
#define _GNU_SOURCE
#include <stdlib.h> /* for NULL */
#include <unistd.h> /* for syscall */
#include <sys/syscall.h> /* for SYS_getrandom */

View file

@ -274,6 +274,7 @@ AS_HELP_STRING([--without-sys-getrandom],
AS_IF([test "x$with_sys_getrandom" != xno],
[AC_MSG_CHECKING([for syscall SYS_getrandom (Linux 3.17+)])
AC_LINK_IFELSE([AC_LANG_SOURCE([
#define _GNU_SOURCE
#include <stdlib.h> /* for NULL */
#include <unistd.h> /* for syscall */
#include <sys/syscall.h> /* for SYS_getrandom */