mirror of
https://github.com/octoleo/lsyncd.git
synced 2024-11-12 00:06:26 +00:00
24 lines
478 B
C
24 lines
478 B
C
/*
|
|
| feature.h from Lsyncd -- the Live (Mirror) Syncing Demon
|
|
|
|
|
| Some Definitions to enable proper clib header features
|
|
| Also loads the cmake config file
|
|
|
|
|
| License: GPLv2 (see COPYING) or any later version
|
|
| Authors: Axel Kittenberger <axkibe@gmail.com>
|
|
*/
|
|
#ifndef FEATURE_H
|
|
#define FEATURE_H
|
|
|
|
|
|
#include "config.h"
|
|
|
|
// some older machines need this to see pselect
|
|
#define _BSD_SOURCE 1
|
|
#define _DEFAULT_SOURCE 1
|
|
#define _XOPEN_SOURCE 700
|
|
#define _DARWIN_C_SOURCE 1
|
|
|
|
|
|
#endif
|