diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2017-06-05 13:44:29 +0200 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2017-06-05 13:44:29 +0200 |
| commit | 8e8c5cfd7341079741817e098d8b9fac2dff0e2b (patch) | |
| tree | 10c1529eb56235b303bdbca905e8b80dce47ae6d /common | |
| parent | a0ac5eb343f3c45e5335e93d004bc5eb4cf2e135 (diff) | |
FreeBSD fixes
Increase _POSIX_SOURCE value where needed.
Increase _XOPEN_SOURCE value where needed.
Conditionally link to libcap (only on Linux).
Possibly some trailing whitespace fixes (automatic).
Diffstat (limited to 'common')
| -rw-r--r-- | common/log.c | 2 | ||||
| -rw-r--r-- | common/stringop.c | 2 | ||||
| -rw-r--r-- | common/util.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/common/log.c b/common/log.c index 61937495..af1bdc3f 100644 --- a/common/log.c +++ b/common/log.c @@ -1,4 +1,4 @@ -#define _POSIX_C_SOURCE 1 +#define _POSIX_C_SOURCE 199506L #include <errno.h> #include <libgen.h> #include <signal.h> diff --git a/common/stringop.c b/common/stringop.c index 99e9636d..4a37543d 100644 --- a/common/stringop.c +++ b/common/stringop.c @@ -1,4 +1,4 @@ -#define _XOPEN_SOURCE 500 +#define _XOPEN_SOURCE 700 #include <stdlib.h> #include <stdio.h> #include <string.h> diff --git a/common/util.c b/common/util.c index 34bb5ec1..d6369853 100644 --- a/common/util.c +++ b/common/util.c @@ -1,4 +1,4 @@ -#define _XOPEN_SOURCE 500 +#define _XOPEN_SOURCE 700 #include <sys/types.h> #include <sys/stat.h> #include <unistd.h> |
