85d197346a
Needed for EL5. Based on: https://github.com/rurban/mosh/commit/c70c3707e65b42ac9b9da937e9c255211330805e
25 lines
289 B
C
25 lines
289 B
C
#ifndef SYSDEPS_H
|
|
#define SYSDEPS_H
|
|
|
|
#include "config.h"
|
|
|
|
#ifdef HAVE_PIPE2_CLOEXEC
|
|
#define HASPIPE2
|
|
#else
|
|
#undef HASPIPE2
|
|
#endif
|
|
|
|
#ifdef HAVE_SIGNALFD
|
|
#define HASSIGNALFD
|
|
#else
|
|
#undef HASSIGNALFD
|
|
#endif
|
|
|
|
#ifdef HAVE_SIGACTION
|
|
#define HASSIGACTION
|
|
#else
|
|
#undef HASSIGACTION
|
|
#endif
|
|
|
|
#endif
|