mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
fix check of existense of closefrom function
This commit is contained in:
parent
e8a9d3351d
commit
8554d74a0d
@ -4,7 +4,8 @@
|
||||
#include <sys/wait.h>
|
||||
#include <fcntl.h>
|
||||
|
||||
#ifndef closefrom
|
||||
// closefrom was introduced in glibc 2.34
|
||||
#if __GLIBC__ <= 2 && __GLIBC_MINOR__ < 34
|
||||
namespace
|
||||
{
|
||||
|
||||
|
@ -9,7 +9,8 @@
|
||||
|
||||
#include <stdexcept>
|
||||
|
||||
#ifndef closefrom
|
||||
// closefrom was introduced in glibc 2.34
|
||||
#if __GLIBC__ <= 2 && __GLIBC_MINOR__ < 34
|
||||
namespace
|
||||
{
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user