tree-wide: use instead of #ifdef for HAVE_*

This commit is contained in:
Yu Watanabe 2018-06-29 16:26:49 +09:00 committed by Lennart Poettering
parent cc7d50a571
commit 545cdb90f3
3 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,7 @@
#include <getopt.h>
#include <unistd.h>
#ifdef HAVE_CRYPT_H
#if HAVE_CRYPT_H
/* libxcrypt is a replacement for glibc's libcrypt, and libcrypt might be
* removed from glibc at some point. As part of the removal, defines for
* crypt(3) are dropped from unistd.h, and we must include crypt.h instead.

View File

@ -11,7 +11,7 @@ const char* const dnssd_service_dirs[] = {
"/etc/systemd/dnssd",
"/run/systemd/dnssd",
"/usr/lib/systemd/dnssd",
#ifdef HAVE_SPLIT_USR
#if HAVE_SPLIT_USR
"/lib/systemd/dnssd",
#endif
NULL

View File

@ -1052,7 +1052,7 @@ static int fd_set_acls(Item *item, int fd, const struct stat *st) {
static int path_set_acls(Item *item, const char *path) {
int r = 0;
#ifdef HAVE_ACL
#if HAVE_ACL
_cleanup_close_ int fd = -1;
struct stat st;
@ -1067,9 +1067,9 @@ static int path_set_acls(Item *item, const char *path) {
return log_error_errno(errno, "Failed to fstat() file %s: %m", path);
r = fd_set_acls(item, fd, &st);
#endif
return r;
}
#endif
return r;
}
#define ATTRIBUTES_ALL \
(FS_NOATIME_FL | \