Skip to content
Snippets Groups Projects
Commit 484710f2 authored by David Goulet's avatar David Goulet :panda_face:
Browse files

build: The <sys/sysctl.h> is now deprecated on Linux

Closes #31673
parent 5a1c3e44
No related branches found
No related tags found
No related merge requests found
o New system requirements (build system):
- Do not include the deprecated <sys/sysctl.h> on Linux or Windows system.
Closes 31673;
......@@ -27,9 +27,6 @@
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_SYS_SYSCTL_H
#include <sys/sysctl.h>
#endif
#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif
......@@ -70,6 +67,11 @@
#include <sys/capability.h>
#endif
/* Now deprecated in Linux GLIBC */
#if defined(HAVE_SYS_SYSCTL_H) && !defined(_WIN32) && !defined(__linux__)
#include <sys/sysctl.h>
#endif
#ifdef _WIN32
#include <conio.h>
#include <wchar.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment